GET /clients/{clientId} – Retrieves details of a specific client application by its ID.
Headers:
Authorization: Bearer <access_token>
Content-Type: application/json or application/x-www-form-urlencoded
Body:
Path Parameters:
Query Parameters:
auth0-client
cognito-client
200 OK
400
401
404
500
{ "error": "Detailed error message here"} Copy
{ "error": "Detailed error message here"}
GET /clients/exampleClientId Copy
GET /clients/exampleClientId
GET /clients/exampleClientId?provider=cognito-client&userPoolId=exampleUserPoolId Copy
GET /clients/exampleClientId?provider=cognito-client&userPoolId=exampleUserPoolId
{ "id": "clientId", "name": "string", "secret": "string", "callbacks": ["string"], "allowedLogoutUrls": ["string"], "grantTypes": ["string"], "tokenEndpointAuthMethod": "string", "supportedIdp": ["string"], "description": "string", "webOrigins": ["string"], "appType": "string", "clientMetadata": { "key": "value" }, "disabled": false, "oidcConformant": true, "auth0Id": "string" // More fields may be present depending on the provider } Copy
{ "id": "clientId", "name": "string", "secret": "string", "callbacks": ["string"], "allowedLogoutUrls": ["string"], "grantTypes": ["string"], "tokenEndpointAuthMethod": "string", "supportedIdp": ["string"], "description": "string", "webOrigins": ["string"], "appType": "string", "clientMetadata": { "key": "value" }, "disabled": false, "oidcConformant": true, "auth0Id": "string" // More fields may be present depending on the provider }
The API Gateway event containing the request.
A Promise resolving to an API Gateway-compatible response.
GET /clients/{clientId} – Retrieves details of a specific client application by its ID.
📥 Request
Headers:
Authorization: Bearer <access_token>(required)Content-Type: application/json or application/x-www-form-urlencoded(required)Body:
Path Parameters:
Query Parameters:
auth0-clientif omitted. See ClientProvider.cognito-client)📤 Response
200 OK– Returns the client Client.❗ Errors
400401404500Error Response Format
📦 Examples
📥 Auth0 Request
📥 Cognito Request
📤 Response Example