Skip to main content
GET
/
v2
/
auth
/
oauth2
/
clients
/
{clientId}
Get OAuth2 client
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>"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

clientId
string
required

Response

200 - application/json
status
enum<string>
required
Available options:
success,
error
Example:

"success"

data
object
required