Notification APIs
Details of APIs that facilitate notifications through HCX.
Last updated
Details of APIs that facilitate notifications through HCX.
Last updated
In order to make notifications secure, lightweight and easily deliverable and actionable, following constraints are proposed:
Reuse existing protocol features wherever possible
Limit the Maximum size of notification payload
Templatized messages based on notification topic to encourage semantic interoperability
Following key APIs are envisioned to enable notifications in HCX. Full API specifications in OpenAPI 3.0 format are available here.
Get the list of notification types supported by the network along with their classification and access control parameters. Key attributes of notification type master data are:
/notification/list
As evident sanctity of the master list of notification is important for effective notification service on the network, hence it is recommended that master list of the notification is given the same treatment as an operator would give to its code for the switch.
APIs to subscribe or unsubscribe to a notification type based on its subscribability. For Use case type notifications, this API is also expected to be implemented by the participating systems supporting such notifications. Key attributes of the subscription model are:
Input would be the topic_code and payloads containing use case related details wherever applicable. The final response would be returned asynchronously.
/notification/subscribe
/notification/unsubscribe
/notification/subscription/list
APIs to trigger the actual notification that would be used by the participants (including HCX switch) to notify the intended participants. This API would be used in two modes:
by HCX switch on participants to deliver the final notification (of all categories)
By participants on HCX to trigger delivery notifications of participants and use case categories on the intended recipients.
Proposed attributes of notification header and payload:
/notification/notify: return a synchronous acknowledgement of notification being received. Please note that no callback pair is defined for notify API.
APIs to track and expire the notification subscription that will be used by the notification initiating participants to stop sending notifications to the subscribed participants after the expiry trigger condition is satisfied.
There can be two type of subscription expiry conditions:
Event based triggers
Time based triggers
This API will be used by the initiating participants to revoke the subscription access of the receiving participants.
Any change in the subscription from the sending participant would be notified to all the affected receiving participants using the proposed targeted network notification capability. This is proposed to ensure that receiving participants are not inadvertently affected by change in subscription and may trigger renewal workflows for cases when subscriptions are revoked by sending participants.
/notification/subscription/update
Attribute/Property
DataType
Description
title
String
Title of the notification
description
String
Details about the notification
sender
List<String>
List of roles who can send this notification.
recipient
List<String>
List of roles who can subscribe to this notification.
topic_code
String
Unique code for the notification topic
category
String
Category of the notification as detailed above - network (broadcast & target), participant, use_case
priority
int
Default priority assigned to the topic. 0 means highest, positive integer would carry the respective relative priority. Negative would be that the topic is disabled. Relative order of category for different message categories is recommended to be use_case > participant > network
Column
DataType
Description
subscription_id
UUID
Unique identifier for the subscription.
participant_code
String
Identifier of the subscriber.
topic_code
String
Identifier of the notification topic.
status
Integer
Status of the notification. Values: 1 - active, 0 - inactive, -1 - pending for approval.
subscription_data
Object
Encrypted details subject of subscription for the use_case category
subscribed_on
timestamp
expires_on
timestamp
Timestamp when the notification expires. Can use a reasonably long period to indicate forever valid notifications, however it is recommended that subscriptions are periodically renewed.
Column
DataType
Description
notificationId
String (UUID)
Unique id assigned by the initiator to the notification
sender
String
Participant code of the notification initiator
category
String
Category of the notification as defined by the specs - network, participant or use_case
topic
String
Topic of notification as defined in the master list of notifications
recipientCodes
String[]
Participant code of the recipient(s) of the notification. Could be one or more based on the need.
recipientRoles
String[]
Participant role of the recipient(s) of the notification. Could be one or more based on the need.
recipientCodes and/or recipientRoles can be used to send a notification (network or participant category) to a subset of participants defined in the notification master data for the corresponding topic.
subscriptions
String[]
Conditional mandatory: list of subscription_ids (at least one) is mandatory for use_case category notifications.
Locale
String
Placeholder if localisation needs to be supported in future
reference
String
Optional reference to the context for which the notification is meant. E.g. could be correlation_id or workflow_id for a use_case notification.
Maybe another notification that was sent earlier.
initiationTime
Timestamp
Protocol suggested format timestamp of when the notification was initiated by the sender
expiry
Timestamp
Expiry of the notification - should be later than initiationTime and currentTime.
message
String
Detailed message - usually picked from the template associated with the topic.
messageData
Key: Value dictionary
Key value pairs containing data for the replaceable attributes in the message template
This API is for the participants in the network to check the master list of notifications available and subscribe to them.
The participant should send the below details in the request body while making a call for notification subscription.
The response to this API could be one of the following:
If the request is validated and accepted by HCX gateway, based on recipient it will be processed. If it recipient is not HCX gateway, the request will be forwarded to recipient and the participant should expect a response via callback API from recipient.
OK
Unix timestamp when the response is sent.
"1629057611000"
Unique identifier of the notification subscription.
"SUBSCRIPTION01@HCX01"
1
This API is for the participants in the network to check the subscription list and unsubscribe to them. The participant should send the below details in the request body while making a call for notification unsubscription.
The response to this API could be one of the following:
If the request is validated and accepted by HCX gateway, based on recipient it will be processed. If it recipient is not HCX gateway, the request will be forwarded to recipient and the participant should expect a response via callback API from recipient.
OK
Unix timestamp when the response is sent.
"1629057611000"
Unique identifier of the notification subscription.
"SUBSCRIPTION01@HCX01"
1
This API is for the participants in the network to check the master list of notifications available to them.
OK
Unix timestamp when the response is sent.
"1629057611000"
Total number of master list notifications defined at HCX gateway with the given request filter.
1
This API is for the participants to get the notification subscription list.
The participant should send the below details in the request body.
OK
Unix timestamp when the response is sent.
"1629057611000"
Total number of master list notifications defined at HCX gateway with the given request filter.
1
This API is for the participants to explicitly send the notification to recipients via HCX gateway. The participant should send the below details in the request body.
The response to this API could be one of the following:
If the request is validated and accepted by HCX gateway, based on recipient it will be processed. The changes to the subscription should be notified to the subscriber(s).
Unique notification identifier from HCX gateway using the master list.
"NOTIFICATION@HCX01"
The list of subscribers to which the the subscription data will be updated.
1
OK
Unix timestamp when the response is sent.
"1629057611000"
That is present in the transport header of the request.
That is present in the transport header of the request.
This API is for the participants to explicitly send the notification to recipients via HCX gateway. The participant should send the below details in the request body while making a call to send notification.
The notification protected headers defined and used by all the other APIs to understand the sender, recipient_type, recipients etc,.
description - work in progress.
The response to this API could be one of the following:
The HCX gateway will send the notification to all the recipients of the notification if the x-hcx-recipient_id is HCX gateway identifier.
OK
Unix timestamp when the response is sent.
"1629057611000"
That is present in the transport header of the request.
That is present in the transport header of the request.