Add Apple Identity Provider
POSThttps://$CUSTOM-DOMAIN/admin/v1/idps/apple
Add Apple Identity Provider
Request​
- application/json
- application/grpc
- application/grpc-web+proto
Body
required
Possible values: <= 200 characters
Apple will be used as default, if no name is provided
Possible values: non-empty
and <= 200 characters
Client id (App ID or Service ID) provided by Apple
Possible values: >= 10 characters
and <= 10 characters
(10-character) Team ID provided by Apple
Possible values: >= 10 characters
and <= 10 characters
(10-character) ID of the private key generated by Apple
Possible values: non-empty
and <= 5000 characters
Private Key generated by Apple
Possible values: <= 20
The scopes requested by ZITADEL during the request to Apple
providerOptions
object
Body
required
Possible values: <= 200 characters
Apple will be used as default, if no name is provided
Possible values: non-empty
and <= 200 characters
Client id (App ID or Service ID) provided by Apple
Possible values: >= 10 characters
and <= 10 characters
(10-character) Team ID provided by Apple
Possible values: >= 10 characters
and <= 10 characters
(10-character) ID of the private key generated by Apple
Possible values: non-empty
and <= 5000 characters
Private Key generated by Apple
Possible values: <= 20
The scopes requested by ZITADEL during the request to Apple
providerOptions
object
Body
required
Possible values: <= 200 characters
Apple will be used as default, if no name is provided
Possible values: non-empty
and <= 200 characters
Client id (App ID or Service ID) provided by Apple
Possible values: >= 10 characters
and <= 10 characters
(10-character) Team ID provided by Apple
Possible values: >= 10 characters
and <= 10 characters
(10-character) ID of the private key generated by Apple
Possible values: non-empty
and <= 5000 characters
Private Key generated by Apple
Possible values: <= 20
The scopes requested by ZITADEL during the request to Apple
providerOptions
object
Responses​
- 200
- 403
- 404
- default
A successful response.
- application/json
- application/grpc
- application/grpc-web+proto
- Schema
- Example (from schema)
Schema
details
object
{
"details": {
"sequence": "2",
"creationDate": "2025-03-28T12:37:42.365Z",
"changeDate": "2025-03-28T12:37:42.365Z",
"resourceOwner": "69629023906488334"
},
"id": "string"
}
- Schema
- Example (from schema)
Schema
details
object
{
"details": {
"sequence": "2",
"creationDate": "2025-03-28T12:37:42.365Z",
"changeDate": "2025-03-28T12:37:42.365Z",
"resourceOwner": "69629023906488334"
},
"id": "string"
}
- Schema
- Example (from schema)
Schema
details
object
{
"details": {
"sequence": "2",
"creationDate": "2025-03-28T12:37:42.365Z",
"changeDate": "2025-03-28T12:37:42.365Z",
"resourceOwner": "69629023906488334"
},
"id": "string"
}
Returned when the user does not have permission to access the resource.
- application/json
- application/grpc
- application/grpc-web+proto
- Schema
- Example (from schema)
Schema
details
object[]
{
"code": 0,
"message": "string",
"details": [
{
"@type": "string"
}
]
}
- Schema
- Example (from schema)
Schema
details
object[]
{
"code": 0,
"message": "string",
"details": [
{
"@type": "string"
}
]
}
- Schema
- Example (from schema)
Schema
details
object[]
{
"code": 0,
"message": "string",
"details": [
{
"@type": "string"
}
]
}
Returned when the resource does not exist.
- application/json
- application/grpc
- application/grpc-web+proto
- Schema
- Example (from schema)
Schema
details
object[]
{
"code": 0,
"message": "string",
"details": [
{
"@type": "string"
}
]
}
- Schema
- Example (from schema)
Schema
details
object[]
{
"code": 0,
"message": "string",
"details": [
{
"@type": "string"
}
]
}
- Schema
- Example (from schema)
Schema
details
object[]
{
"code": 0,
"message": "string",
"details": [
{
"@type": "string"
}
]
}
An unexpected error response.
- application/json
- application/grpc
- application/grpc-web+proto
- Schema
- Example (from schema)
Schema
details
object[]
{
"code": 0,
"message": "string",
"details": [
{
"@type": "string"
}
]
}
- Schema
- Example (from schema)
Schema
details
object[]
{
"code": 0,
"message": "string",
"details": [
{
"@type": "string"
}
]
}
- Schema
- Example (from schema)
Schema
details
object[]
{
"code": 0,
"message": "string",
"details": [
{
"@type": "string"
}
]
}
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L 'https://$CUSTOM-DOMAIN/admin/v1/idps/apple' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>' \
-d '{
"name": "Apple",
"clientId": "client-id",
"teamId": "ALT03JV3OS",
"keyId": "OGKDK25KD",
"privateKey": "LS0tLS1CRUdJTiBQUklWQVRFIEtFWS0tLS0tCk1...",
"scopes": [
"name",
"email"
],
"providerOptions": {
"isLinkingAllowed": true,
"isCreationAllowed": true,
"isAutoCreation": true,
"isAutoUpdate": true,
"autoLinking": "AUTO_LINKING_OPTION_UNSPECIFIED"
}
}'