Publish
Use the message structure to publish a message to the topic. After the message ID is returned, the message has been saved and is to be pushed to the subscribers of the topic. This API allows you to send different message content to different types of subscribers.
POST /v2/{project_id}/notifications/topics/{topic_urn}/publish
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
project_id |
Yes |
String |
Project ID |
topic_urn |
Yes |
String |
Unique resource ID of a topic. You can obtain it according to Querying Topics. |
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
subject |
Yes |
String |
Message subject, which is presented as the email subject when SMN sends massages to email subscribers The message subject cannot exceed 512 bytes. |
message_structure |
Yes |
String |
Message structure, which contains JSON character strings. Specify protocols in the structure, which can be http, https, email, dms, and sms. The default protocol is mandatory. If the system fails to match any other protocols, the default message is sent. NOTE:
Three message formats are supported:
If the three formats are specified at the same time, they take effect in the following sequence: message_structure > message_template_name > message. |
time_to_live |
No |
String |
TTL of a message, specifically, the maximum time period for retaining the message in the system If the period expires, the system will discard the message. The time period is measured in seconds, and the default TTL is 3600s (one hour). The value must be a positive integer less than or equal to 604,800 (3600 x 24 x 7). |
POST https://{SMN_Endpoint}/v2/{project_id}/notifications/topics/urn:smn:regionId: f96188c7ccaf4ffba0c9aa149ab2bd57:test_create_topic_v2/publish
{ "subject": "test message v2", "time_to_live":"3600", "message_structure": "{"default":"test v2 default", "email":"abc"}" }
For example, a topic has two types of subscriptions, SMS and email. After the API is called to publish messages, the email subscriber will receive message "abc", and the SMS subscriber will receive the default message "test v2 default".
Parameter |
Type |
Description |
---|---|---|
request_id |
String |
Request ID, which is unique |
message_id |
String |
Message ID, which is unique |
{ "message_id": "bf94b63a5dfb475994d3ac34664e24f2", "request_id": "9974c07f6d554a6d827956acbeb4be5f" }
See section Returned Value.
See section Error Code.