Receives and processes Slack-formatted webhook payloads, converting them to messages in the configured channel. Returns “ok” as plain text with a 200 status code.
curl --request POST \
--url https://api.fluxer.app/v1/webhooks/{webhook_id}/{token}/slack \
--header 'Content-Type: application/json' \
--data '
{
"text": "<string>",
"username": "<string>",
"icon_url": "<string>",
"attachments": [
{
"fallback": "<string>",
"pretext": "<string>",
"text": "<string>",
"color": "<string>",
"title": "<string>",
"title_link": "<string>",
"fields": [
{
"title": "<string>",
"value": "<string>",
"short": true
}
],
"footer": "<string>",
"ts": 4503599627370495,
"author_name": "<string>",
"author_link": "<string>",
"author_icon": "<string>",
"image_url": "<string>",
"thumb_url": "<string>"
}
]
}
'"<string>"The ID of the webhook
The token
Success
The response is of type string.
curl --request POST \
--url https://api.fluxer.app/v1/webhooks/{webhook_id}/{token}/slack \
--header 'Content-Type: application/json' \
--data '
{
"text": "<string>",
"username": "<string>",
"icon_url": "<string>",
"attachments": [
{
"fallback": "<string>",
"pretext": "<string>",
"text": "<string>",
"color": "<string>",
"title": "<string>",
"title_link": "<string>",
"fields": [
{
"title": "<string>",
"value": "<string>",
"short": true
}
],
"footer": "<string>",
"ts": 4503599627370495,
"author_name": "<string>",
"author_link": "<string>",
"author_icon": "<string>",
"image_url": "<string>",
"thumb_url": "<string>"
}
]
}
'"<string>"