cURL
curl --request GET \ --url https://api.cal.com/v2/auth/oauth2/clients/{clientId} \ --header 'Authorization: Bearer <token>'
{ "status": "success", "data": { "client_id": "clxxxxxxxxxxxxxxxx", "redirect_uris": [ "https://example.com/callback" ], "name": "My App", "is_trusted": false, "client_type": "CONFIDENTIAL", "logo": "<string>" } }
Returns the OAuth2 client information for the given client ID
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
success
error
"success"
Show child attributes
Was this page helpful?