/conversations.replies
GET
/conversations.replies
conversations
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://slack.com/api/conversations.replies'
Response Response Example
200 - response
{
"has_more": true,
"messages": [
{
"last_read": "1484678597.521003",
"reply_count": 3,
"subscribed": true,
"text": "island",
"thread_ts": "1482960137.003543",
"ts": "1482960137.003543",
"type": "message",
"unread_count": 0,
"user": "U061F7AUR"
},
{
"parent_user_id": "U061F7AUR",
"text": "one island",
"thread_ts": "1482960137.003543",
"ts": "1483037603.017503",
"type": "message",
"user": "U061F7AUR"
},
{
"parent_user_id": "U061F7AUR",
"text": "two island",
"thread_ts": "1482960137.003543",
"ts": "1483051909.018632",
"type": "message",
"user": "U061F7AUR"
},
{
"parent_user_id": "U061F7AUR",
"text": "three for the land",
"thread_ts": "1482960137.003543",
"ts": "1483125339.020269",
"type": "message",
"user": "U061F7AUR"
}
],
"ok": true,
"response_metadata": {
"next_cursor": "bmV4dF90czoxNDg0Njc4MjkwNTE3MDkx"
}
}
Request
Query Params
token
stringÂ
optional
conversations:history
channel
stringÂ
optional
ts
numberÂ
optional
ts
must be the timestamp of an existing message with 0 or more replies. If there are no replies then just the single message referenced by ts
will return - it is just an ordinary, unthreaded message.latest
numberÂ
optional
oldest
numberÂ
optional
inclusive
stringÂ
optional
limit
integerÂ
optional
cursor
stringÂ
optional
cursor
parameter to a next_cursor
attribute returned by a previous request's response_metadata
. Default value fetches the first "page" of the collection. See pagination for more detail.Responses
Modified at 2023-08-15 05:39:45