---
title: "Dynamic Client Registration (RFC 7591)"
method: POST
path: "/oauth/register"
tags: ["OAuth"]
---

# Dynamic Client Registration (RFC 7591)

`POST /oauth/register`

Register a new OAuth client. Returns client_id, registration_access_token (also exposed as client_secret), and the registered metadata.

## Request body

- object
  - `client_name` string, required
  - `redirect_uris` string[], required
  - `scope` string, nullable
  - `application_type` 'web' | 'native'
  - `client_uri` string, uri, nullable
  - `logo_uri` string, uri, nullable
  - `tos_uri` string, uri, nullable
  - `policy_uri` string, uri, nullable
  - `contacts` string[], nullable
  - `software_id` string, nullable
  - `software_version` string, nullable

## Response `201`

Default Response

- object
  - `client_id` string, required
  - `client_name` string, required
  - `redirect_uris` string[], required
  - `application_type` string, required
  - `client_uri` string, nullable
  - `logo_uri` string, nullable
  - `tos_uri` string, nullable
  - `policy_uri` string, nullable
  - `contacts` string[], nullable
  - `software_id` string, nullable
  - `software_version` string, nullable
  - `client_id_issued_at` number, required
  - `registration_access_token` string, required
  - `client_secret` string, required
  - `registration_client_uri` string, nullable

## Other responses

- `400` — Default Response
- `500` — Default Response

---

[API](https://skmtc.dev/jam/apis/jam-public-api.md) · [All operations](https://skmtc.dev/jam/apis/jam-public-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/jam/jam-public-api/revisions/b628e9368a59/schema)
