メインコンテンツへスキップ
DELETE
https://{tenantDomain}/api/v2
/
organizations
/
{id}
/
clients
Remove client associations from an organization
curl --request DELETE \
  --url https://{tenantDomain}/api/v2/organizations/{id}/clients \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "clients": [
    "<string>"
  ]
}
'
{
  "message": "<string>",
  "statusCode": "<unknown>",
  "error": "<unknown>"
}

Documentation Index

Fetch the complete documentation index at: https://docs-staging.auth0-mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

承認

Authorization
string
header
必須

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

パスパラメータ

id
string<organization-id>
必須

ID of the organization.

ボディ

clients
string<client-id>[]
必須

List of client IDs to disassociate from the organization.

Required array length: 1 - 100 elements

レスポンス

Organization clients successfully disassociated.