List discussion messages
Path Parameters
- Type: stringinvite
_id required
Query Parameters
- Type: integerlimitmin:1max:100
Integer numbers.
- Type: stringcursor
Responses
- application/json
Request Example for get/invites/{invite_id}/messages
curl https://api.eventthing.example/v1/invites/inv_4h29sm/messages \
--header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
"data": [
{
"id": "msg_82ks9m",
"invite_id": "inv_4h29sm",
"author": {
"id": "usr_18mx2q",
"display_name": "Bean",
"truckersmp_id": 7654321
},
"body": "string",
"created_at": "2026-08-30T21:47:34.384Z",
"edited_at": null
}
],
"pagination": {
"next_cursor": null,
"has_more": true
}
}