List discussion messages

Path Parameters
  • invite_id
    Type: string
    required
Query Parameters
  • limit
    Type: integer
    min:  
    1
    max:  
    100

    Integer numbers.

  • cursor
    Type: string
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
  }
}