Skip to main content
POST
/
v1
/
integration
/
slack
/
app
Register App
curl --request POST \
  --url https://{api_endpoint}/api/v1/integration/slack/app \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "channel": "<string>",
  "app_id": "<string>",
  "client_id": "<string>",
  "client_secret": "<string>",
  "signing_secret": "<string>",
  "created_on": "<string>",
  "updated_at": "<string>",
  "tenant_id": "<string>"
}
'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Body

application/json
channel
string
required
app_id
string
required
client_id
string
required
client_secret
string
required
signing_secret
string
required
created_on
string | null
updated_at
string | null
tenant_id
string | null

Response

Successful Response