curl --request GET \
--url https://api.cal.com/v2/auth/oauth2/clients/{clientId} \
--header 'Authorization: Bearer <token>'{
"status": "success",
"data": {
"client_id": "clxxxxxxxxxxxxxxxx",
"redirect_uri": "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
curl --request GET \
--url https://api.cal.com/v2/auth/oauth2/clients/{clientId} \
--header 'Authorization: Bearer <token>'{
"status": "success",
"data": {
"client_id": "clxxxxxxxxxxxxxxxx",
"redirect_uri": "https://example.com/callback",
"name": "My App",
"is_trusted": false,
"client_type": "CONFIDENTIAL",
"logo": "<string>"
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Was this page helpful?