Skip to main content
POST
/
create
Create a new app
curl --request POST \
  --url https://api.example.com/create \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "url": "<string>",
  "webHookUrl": "<string>"
}
'

Authorizations

Authorization
string
header
required

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

Body

application/json
name
string
required
url
string
required
webHookUrl
string
required

Response

201 - undefined