Skip to main content
POST
/
admin
/
v0
/
messages
Send Slack message
curl --request POST \
  --url https://api.tightknit.ai/admin/v0/messages \
  --header 'Authorization: Bearer <token>' \
  --header 'content-type: <content-type>' \
  --data '
{
  "channel": "<string>",
  "text": "<string>",
  "thread_ts": "<string>"
}
'
{
  "success": true
}

Documentation Index

Fetch the complete documentation index at: https://docs.tightknit.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

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

Headers

content-type
enum<string>
required
Available options:
application/json

Body

application/json
channel
string
required
text
string
required
Minimum string length: 1
thread_ts
string | null

Response

Message sent

success
boolean
required