POST
/
admin
/
v0
/
messages
Send a Slack message
curl --request POST \
  --url https://api.tightknit.dev/admin/v0/messages \
  --header 'Authorization: Bearer <token>' \
  --header 'content-type: <content-type>' \
  --data '{
  "channel": "C0123456789",
  "text": "Hello world!",
  "thread_ts": "1744404770.926629"
}'
{
  "success": true
}

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

Response

200
application/json

Sends the message

The response is of type object.