Skip to main content
POST
/
v1
/
core
/
oauth
/
apps
Create a new OAuth application for an organization
curl --request POST \
  --url https://api.example.com/v1/core/oauth/apps \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "appName": "<string>",
  "owner": "<string>",
  "organizationId": "<string>"
}
'
{
  "appName": "<string>",
  "clientID": "<string>",
  "clientSecret": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
appName
string
required
owner
string
required

The user that created this OAuth app.

organizationId
string
required

The organization that owns this OAuth app.

Response

200 - application/json

Create a new OAuth application for an organization

appName
string
required
clientID
string
required
clientSecret
string
required