✨ New Gift Cards API Live Now - Beta!
curl --request POST \
--url https://api.gameboost.com/v2/item-orders/{itemOrder}/messages \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"message": "Hi! I have completed the currency delivery. Please check your account and confirm receipt."
}
'{
"data": {
"id": "<string>",
"type": "user_message",
"text": "<string>",
"attachment": {},
"sender": {
"id": 123,
"username": "<string>",
"is_admin": true
},
"sent_at": 123
}
}Send a new chat message to the buyer for this item order. Order must be in processing status.
curl --request POST \
--url https://api.gameboost.com/v2/item-orders/{itemOrder}/messages \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"message": "Hi! I have completed the currency delivery. Please check your account and confirm receipt."
}
'{
"data": {
"id": "<string>",
"type": "user_message",
"text": "<string>",
"attachment": {},
"sender": {
"id": 123,
"username": "<string>",
"is_admin": true
},
"sent_at": 123
}
}Documentation Index
Fetch the complete documentation index at: https://docs.gameboost.com/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The ID of the item order. Can be retrieved from the list of item orders, or from the parent item offer, or from webhooks.
Text content of the message to send to the buyer/seller
10000"Hi! I have completed the currency delivery. Please check your account and confirm receipt."
Message sent successfully
Message object representing a chat message in an order conversation
Show child attributes
Was this page helpful?