v1
latestOpenAPI 3.0.12026-07-245277551.2 MBIntegration Events
Create a new integration event.
post/integration/v1/events
Headers
x-property-idstring required
Example:1,2,3
A numeric, comma-separated string representing the property IDs, sent in the header.
Request body
Example request
{
"objectType": "reservation",
"system": "gov",
"status": "open",
"result": "success",
"objectId": "1234567890",
"description": "Integration event description",
"details": "You need to check room mappings.",
"actionText": "Retry",
"retryUrl": "https://example.com/retry"
}Response
An integration event that was just created.
Example response
{
"id": "123456",
"propertyId": "123456",
"objectId": "123456",
"objectType": "reservation",
"system": "gov",
"status": "open",
"result": "success",
"description": "Integration event description.",
"details": "Integration event details.",
"actionText": "Retry",
"createdAt": "2023-10-01T12:00:00Z",
"updatedAt": "2023-10-01T12:00:00Z",
"retriedAt": "2023-10-01T12:00:00Z"
}