GET
/
get-reply
/
{notificationId}
[
  {
    "text": "Main message content",
    "user": "U01ABC123",
    "ts": "1718690834.000100"
  },
  {
    "text": "This is a threaded reply",
    "user": "U01XYZ456",
    "ts": "1718690845.000300",
    "thread_ts": "1718690834.000100"
  }
]
Authorization
string
required
Bearer token for API authentication. Format: Bearer {{apiToken}}Required: API Key with full access

Path Parameters

string
required
Unique ID of the sent notification (UUID format)

Response

Success Response (200 OK)

Returns an array of messages (including top-level and threaded replies).
text
string
required
Message content
user
string
required
Slack user ID of the sender
ts
string
required
Slack message timestamp (used for threading and ordering)
thread_ts
string
Timestamp of the parent message if this is a threaded reply

Response Examples

[
  {
    "text": "Main message content",
    "user": "U01ABC123",
    "ts": "1718690834.000100"
  },
  {
    "text": "This is a threaded reply",
    "user": "U01XYZ456",
    "ts": "1718690845.000300",
    "thread_ts": "1718690834.000100"
  }
]
  • This endpoint currently supports Slack only.
  • The thread_ts field is only present in threaded messages.
  • Message timestamps (ts and thread_ts) follow Slack’s timestamp format.