v41

latestOpenAPI 3.1.0raw.githubusercontent.com2025-08-053715199.1 KB
App (OAuth)

Create app

Create an app.

post/app

Request body

namestring required
redirectURIstring required

Example request

{
  "name": "Example App",
  "redirectURI": "https://example.com/callback"
}

Response

OAuth 2.0 client ID and secret.

Example response

{
  "data": {
    "id": "cli_XXXXXXXXXXXXXXXXXXXXXXXXX",
    "secret": "sec_******XXXX"
  }
}