curl --request GET \
--url https://api.siit.io/v1/requests/{request_uid}/messages \
--header 'Authorization: Bearer <token>'{
"meta": {
"count": 123,
"total": 123,
"current_page": 123,
"per_page": 20,
"next_page_link": "<string>",
"previous_page_link": "<string>"
},
"results": [
{
"uid": "<string>",
"body_text": "<string>",
"event_type": "message",
"sender_type": "user",
"sent_by_uid": "<string>",
"submitted_from": "public_api",
"attachments": [
{
"filename": "<string>",
"url": "<string>"
}
],
"created_at": "2023-11-07T05:31:56Z"
}
]
}Fetch messages
curl --request GET \
--url https://api.siit.io/v1/requests/{request_uid}/messages \
--header 'Authorization: Bearer <token>'{
"meta": {
"count": 123,
"total": 123,
"current_page": 123,
"per_page": 20,
"next_page_link": "<string>",
"previous_page_link": "<string>"
},
"results": [
{
"uid": "<string>",
"body_text": "<string>",
"event_type": "message",
"sender_type": "user",
"sent_by_uid": "<string>",
"submitted_from": "public_api",
"attachments": [
{
"filename": "<string>",
"url": "<string>"
}
],
"created_at": "2023-11-07T05:31:56Z"
}
]
}event_type being message and notes
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The UID of the request
Successful
Show child attributes
The UID of the event
Content of the event (message or note)
message, note, permalink internal, admin, user UID of the user who authored the message or note
employee_portal, admin_dashboard, slack, mail, system, ms_teams, workflow, external, public_api datetime formatted as ISO 8601 (e.g. "2020-12-15T03:34:13.000Z")