Payload schema
channelstring
Slack channel id of the routed thread.
threadTsstring
Slack thread timestamp of the routed thread.
streamPathstring
Stream path future webhooks for this thread forward to.
Raw JSON schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"channel": {
"type": "string",
"description": "Slack channel id of the routed thread."
},
"threadTs": {
"type": "string",
"description": "Slack thread timestamp of the routed thread."
},
"streamPath": {
"type": "string",
"description": "Stream path future webhooks for this thread forward to."
}
},
"required": [
"channel",
"threadTs",
"streamPath"
]
}