Skip to main content
GET
/
v2
/
item-orders
/
{itemOrder}
/
messages
List messages for an item order
curl --request GET \
  --url https://api.gameboost.com/v2/item-orders/{itemOrder}/messages \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "type": "user_message",
      "text": "<string>",
      "attachment": {},
      "sender": {
        "id": 123,
        "username": "<string>",
        "is_admin": true
      },
      "sent_at": 123
    }
  ],
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

itemOrder
string
required

The ID of the item order. Can be retrieved from the list of item orders, or from the parent item offer, or from webhooks.

Response

A list of messages for the order

data
object[]
message
string | null

Additional information message

I