Skip to content

Confirm message receipt

Request

Confirms receipt of specified messages. This confirmation is required before receiving new messages from the POST /messages/latest endpoint.

Security
BearerAuth
Headers
X-Affiliate-Idintegerrequired

Include here your Affiliate identifier number

Bodyapplication/jsonrequired
messagesArray of strings
Example:
[ "8586a789-44f4-5521-9f27-f5efd097cba" ]
curl -i -X POST \
  https://demandapi.booking.com/3.1/messages/latest/confirm \
  -H 'Authorization: Bearer <YOUR_string_HERE>' \
  -H 'Content-Type: application/json' \
  -H 'X-Affiliate-Id: 0' \
  -d '{
    "messages": [
      "8586a789-44f4-5521-9f27-f5efd097cba"
    ]
  }'