Skip to main content
DELETE
/
v1
/
agent
/
{id}
/
slack
/
unlink
Unlink Slack Account
curl --request DELETE \
  --url https://api.app.shinzo.ai/v1/agent/{id}/slack/unlink \
  --header 'Authorization: Bearer <token>'

Authentication

Requires JWT token or Platform API key via Authorization: Bearer <token> header.
id
string
required
Agent UUID

Example Request

curl -X DELETE https://api.app.shinzo.ai/v1/agent/a1b2c3d4-e5f6-7890-abcd-ef1234567890/slack/unlink \
  -H "Authorization: Bearer <token>"

Example Response

{
  "message": "Slack account unlinked successfully"
}
Unlinking deactivates the channel binding. The agent will no longer receive messages from Slack or be able to send messages to the linked Slack user.

Status Codes

CodeDescription
200Slack account unlinked successfully
401Unauthorized - invalid or missing authentication
404Agent not found or no Slack account linked