doc-exports/docs/smn/api-ref/smn_api_54001.html
guoyanyan feae604f17 SMN API 20220929 v1
Reviewed-by: gtema <artem.goncharov@gmail.com>
Co-authored-by: guoyanyan <guoyanyan3@huawei.com>
Co-committed-by: guoyanyan <guoyanyan3@huawei.com>
2022-11-10 09:15:21 +00:00

11 KiB

Publishing Messages in the Text Format

Description

  • API name

    Publish

  • Function

    Publish messages in the text format to a topic. After the message ID is returned, the message has been saved and is to be pushed to the subscribers of the topic.

URI

  • URI format

    POST /v2/{project_id}/notifications/topics/{topic_urn}/publish

  • Parameter description

    Parameter

    Mandatory

    Type

    Description

    project_id

    Yes

    String

    Project ID

    See Obtaining a Project ID.

    topic_urn

    Yes

    String

    Unique resource ID of a topic. You can obtain it according to Querying Topics.

Request

  • Parameter description

    Parameter

    Mandatory

    Type

    Description

    subject

    Yes

    String

    Message subject, which is used as the email subject when you publish email messages. The value cannot exceed 512 characters.

    message

    Yes

    String

    Message content

    The message content is a UTF-8-coded character string of no more than 256 KB. For SMS subscribers, if the content exceeds 256 bytes, the system will divide it into multiple messages and send only the first two.

    time_to_live

    No

    String

    Time-to-live (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).

  • Example request
    POST https://{SMN_Endpoint}/v2/{project_id}/notifications/topics/urn:smn:regionId: f96188c7ccaf4ffba0c9aa149ab2bd57:test_create_topic_v2/publish
    {
        "subject": "test message v2",
        "message": "Message test message v2",
        "time_to_live":"3600"
    }

Response

  • Parameter description

    Parameter

    Type

    Description

    request_id

    String

    Request ID, which is unique

    message_id

    String

    Message ID, which is unique

  • Example response
    {
        "message_id": "bf94b63a5dfb475994d3ac34664e24f2",
        "request_id": "9974c07f6d554a6d827956acbeb4be5f"
    }

Returned Value

See section Returned Value.

Error Code

See section Error Code.