curl --request POST \
--url https://{tenantDomain}/api/v2/clients/cimd/register \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"external_client_id": "<string>"
}
'{
"client_id": "<string>",
"mapped_fields": {
"external_client_id": "<string>",
"name": "<string>",
"app_type": "<string>",
"callbacks": [
"<string>"
],
"logo_uri": "<string>",
"description": "<string>",
"grant_types": [
"<string>"
],
"token_endpoint_auth_method": "<string>",
"jwks_uri": "<string>",
"client_authentication_methods": {
"private_key_jwt": {
"credentials": [
{
"credential_type": "<string>",
"kid": "<string>",
"alg": "<string>"
}
]
}
}
},
"validation": {
"valid": true,
"violations": [
"<string>"
],
"warnings": [
"<string>"
]
}
}Idempotent registration for Client ID Metadata Document (CIMD) clients. Uses external_client_id as the unique identifier for upsert operations.
Create: Returns 201 when a new client is created (requires create:clients scope).
Update: Returns 200 when an existing client is updated (requires update:clients scope).
This endpoint automatically:
curl --request POST \
--url https://{tenantDomain}/api/v2/clients/cimd/register \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"external_client_id": "<string>"
}
'{
"client_id": "<string>",
"mapped_fields": {
"external_client_id": "<string>",
"name": "<string>",
"app_type": "<string>",
"callbacks": [
"<string>"
],
"logo_uri": "<string>",
"description": "<string>",
"grant_types": [
"<string>"
],
"token_endpoint_auth_method": "<string>",
"jwks_uri": "<string>",
"client_authentication_methods": {
"private_key_jwt": {
"credentials": [
{
"credential_type": "<string>",
"kid": "<string>",
"alg": "<string>"
}
]
}
}
},
"validation": {
"valid": true,
"violations": [
"<string>"
],
"warnings": [
"<string>"
]
}
}Documentation Index
Fetch the complete documentation index at: https://auth0-chore-sdk-version-update-20260521.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
URL to the Client ID Metadata Document. Acts as the unique identifier for upsert operations.
1 - 120CIMD client successfully updated (idempotent).
Response after successfully registering or updating a CIMD client
Cette page vous a-t-elle été utile ?