SM -> PMS
Receive real-time restriction updates from SiteMinder to keep your PMS synchronized.
This is a beta specification and subject to change. Reach out to our Ecosystem Team if you wish to develop to this API.
What is Restrictions (SM -> PMS)?
Restrictions (SM -> PMS) is a push notification method where SiteMinder sends restriction updates directly to your Property Management System (PMS). This integration ensures that booking rules configured on the SiteMinder Platform are automatically synchronized to the PMS, maintaining accurate restriction management across all connected systems.
To implement Restrictions (SM -> PMS), the PMS must certify for Restrictions (PMS -> SM).
Considerations
Asynchronous Processing: Due to high update volumes, your PMS must receive updates and queue them for offline processing rather than processing in real-time. This prevents blocking further updates from the PMSX application.
Message Volume: Each message covers a specific room rate code combination with up to 760 dates per message, depending on the hotel's configured update period.
Selective Restriction Delivery: SiteMinder only sends restriction types that your PMS supports, preventing unnecessary data transmission.
Code Mapping: Use
invTypeCodeandratePlanCodevalues that match the codes returned from the PMS Room and Rates endpoint.
Authentication Requirements: The REST components of the pmsXchange API only support PMS-level authentication, which means using the same credentials across all properties. If you’re currently using hotel-level authentication (credentials per property), we recommend switching to PMS-level to ensure compatibility with the REST endpoints.
Endpoint to receive and process hotel room rate restrictions
Hotel identifier code
PMSX partner code
The unique identifier of the request (UUID), this traceToken is logged with this request.
8bf21e96-e6c7-4bf9-a377-a5763e053538Inventory type code
ABCRate plan code
CBARestrictions Update received
Bad request
Unauthorized
Access Denied
Not Found
Too Many Requests
Internal server error
Service Unavailable
POST /pmses/{pmsCode}/hotels/{hotelCode}/restrictions/v1 HTTP/1.1
Host: pmsx-partner.com
Authorization: Basic username:password
X-SM-TRACE-TOKEN: 8bf21e96-e6c7-4bf9-a377-a5763e053538
Content-Type: application/json
Accept: */*
Content-Length: 165
{
"invTypeCode": "ABC",
"ratePlanCode": "CBA",
"restrictions": [
{
"date": "2025-01-01",
"minLOS": 2,
"maxLOS": 7,
"close": false,
"closeToArrival": false,
"closeToDeparture": false
}
]
}No content
Common Questions
Still have questions?
Use the Ask button at the top of the page to chat with our AI assistant — it can help you navigate the guide, understand requirements, and troubleshoot issues.
If you need more support, visit Integration Support.
Last updated
Was this helpful?