Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Update the permissions/scopes assigned to an API key
cURL
curl --request PUT \ --url https://api.example.com/v1/api-keys/{clientId}/scopes \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "scopes": [ "read:payouts", "create:payouts" ] } '
Enter Auth0 JWT token
Auth0 client ID
"abc123xyz456"
Updated list of scopes/permissions
["read:payouts", "create:payouts"]
Scopes updated successfully