curl --request POST \
--url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#SLACK_SEND_MESSAGE' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"action": "SLACK_SEND_MESSAGE",
"parameters": {
"channel": "<string>",
"message": "<string>",
"botName": "<string>",
"botIcon": "<string>",
"blocks": {},
"authenticatedUser": true,
"additionalFields": {}
}
}'
curl --request POST \
--url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#SLACK_SEND_MESSAGE' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"action": "SLACK_SEND_MESSAGE",
"parameters": {
"channel": "<string>",
"message": "<string>",
"botName": "<string>",
"botIcon": "<string>",
"blocks": {},
"authenticatedUser": true,
"additionalFields": {}
}
}'
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Your Paragon Project ID
Success
Was this page helpful?