Skip to main content
Register Slack App Instance
curl --request POST \
  --url https://{api_endpoint}/api/v1/integration/slack \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "access_code": "<string>",
  "agent_id": "<string>",
  "environment_id": "<string>",
  "app_id": "<string>",
  "redirect_uri": "<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
access_code
string
required
agent_id
string
required
environment_id
string
required
app_id
string
required
redirect_uri
string
required

Response

Successful Response