Clients
Client Details
GET
/
clients
/
{id}
Copy
curl --request GET \
--url https://api.identety.dev/clients/{id} \
--header 'x-api-key: <api-key>'
Copy
{
"id": "uuid-123",
"clientId": "client_abc123",
"clientSecret": "secret_xyz789",
"name": "My Client",
"type": "public",
"redirectUris": [
"https://example.com/callback"
],
"allowedScopes": [
"openid",
"profile"
],
"allowedGrants": [
"authorization_code"
],
"isActive": true,
"settings": {
"tokenEndpointAuthMethod": "client_secret_basic",
"accessTokenTTL": 3600
}
}
Authorizations
Path Parameters
Response
200
application/json
Client found successfully
The response is of type object
.
Copy
curl --request GET \
--url https://api.identety.dev/clients/{id} \
--header 'x-api-key: <api-key>'
Copy
{
"id": "uuid-123",
"clientId": "client_abc123",
"clientSecret": "secret_xyz789",
"name": "My Client",
"type": "public",
"redirectUris": [
"https://example.com/callback"
],
"allowedScopes": [
"openid",
"profile"
],
"allowedGrants": [
"authorization_code"
],
"isActive": true,
"settings": {
"tokenEndpointAuthMethod": "client_secret_basic",
"accessTokenTTL": 3600
}
}
Assistant
Responses are generated using AI and may contain mistakes.