Notifications
Notifications on changes to product, availability or booking
Last updated
Notifications on changes to product, availability or booking
Last updated
This new proposed capability is currently undergoing Specification Committee and Member reviews. Become a member to contribute to capability development.
To use this capability add notifications
to your Octo-Capabilities
header. This capability allows you to subscribe to be notified when something changes against either the:
Product
Availability
Booking
You can subscribe to notifications by creating subscriptions, which can be created, updated or deleted. You can also list your subscriptions or retrieve a specific one.
POST
/notifications/subcriptions
Headers
Name | Value |
---|---|
Body
Name | Type | Description |
---|---|---|
Example Response
Note the id
of your created subscription. You can use it to manage your created notification as described below. The REST endpoints will behave as you'd expect using the same schema as above.
Update an existing notification:
PATCH
/notifications/subscriptions/<id>
Delete an existing notification:
DELETE
/notifications/subscriptions/<id>
Retrieve an existing notification:
GET
/notifications/subscriptions/<id>
List all of the notifications associated with your account (Bearer Token):
GET
/notifications/subscriptions
When receiving notification you've created, the request body will not include the fully serialized object of either a product, availability or booking. Instead it'll simply provide you with the parameters needed to fetch that updated resource if you choose to. This can be done using OCTO Core Get Product, Get Booking, and Availability endpoints correspondingly. This is to reduce the volume of data sent in the request and allow the receiver of the notification to chose which capabilities they want to include when fetching the updated resource. All notifications will be HTTP POST requests and include a standard payload scheme:
The value included in data
is the content of the notification will vary based on type
:
productId
then be used to request the updated product details using Get Product.
It is recommended that all notifications receive a 2xx response to confirm successful delivery and processing.
Content-Type
application/json
Authorization
Bearer <token>
Octo-Capabilities
notifications
url
string
The URL where you want the notifications to be sent to
notificationTypes
array
The type(s) of notifications you would like to be subscribed to as a part of this subscription. Possible events are:
PRODUCT_UPDATE
(changes to product object, including option, ticket, etc. within it)
AVAILABILITY_UPDATE
(changes to availabilities)
BOOKING_UPDATE
(changes to bookings)
headers
object
List of HTTP headers you want to be included in the request (eg. for authentication)