Interlaken
API referenceIdentity and accessOAuth 2.1

Register a client dynamically

POST
/oauth/register

RFC 7591 dynamic client registration, used by MCP clients that discover the platform rather than being configured against it. For a credential you control, create an API client instead and use the client_credentials grant.

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

curl -X POST "https://example.com/oauth/register" \  -H "Content-Type: application/json" \  -d '{    "redirect_uris": [      "string"    ]  }'
{  "client_id": "string",  "client_secret": "string",  "client_id_issued_at": 0,  "redirect_uris": [    "string"  ],  "client_name": "string"}