OAuth Clients
Register OAuth client
Register a new OAuth client for third-party application integration.
The generated client_id and client_secret are returned in the response. The secret is shown only once — store it securely.
post/admin/oauth-clients
Request body
Example request
{
"description": "My application production deployment",
"name": "my-app-production",
"redirect_uris": [
"https://app.example.com/auth/callback"
],
"require_consent": true
}Response
Successful Response
Example response
{
"active": true,
"client_id": "oc_abc123...",
"created_at": "2026-08-18T12:00:00Z",
"created_by": "usr_abc123",
"description": "My application production deployment",
"id": "oac_2NxYz...",
"name": "my-app-production",
"redirect_uris": [
"https://app.example.com/auth/callback"
],
"require_consent": true
}Changes
Changed in 1 of the 85 revisions of this API.1
- ○
endpoint added
endpoint-added
This revision also has 1 change that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog
- ○