On Slack's incoming webhook documentation, they mention including the thread_ts
in the request body to start a thread.
{
"text": "Hello, world.",
"thread_ts": "12345.6789"
}
When I make the POST request to my incoming webhook url, the response body does not include the thread_ts
. I was expecting the thread_ts
to be in the response body, but the response body just says ok
and does not include any json.
Is it possible to get the thread_ts
without another app or authentication token? Do I have to use another Slack API? I only have the incoming webhook configured right now.
As a side note, if this is easier to do with Slack's new Block Kit API, that would work as well.