curl --request POST \
--url http://localhost/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>"
}'
"<any>"
curl --request POST \
--url http://localhost/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>"
}'
"<any>"
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Successful Response
The response is of type any
.