Domain name for API request: tdmq.tencentcloudapi.com.
This API is used to send a single message.
The message cannot be sent to a persistent topic.
A maximum of 1000 requests can be initiated per second for this API.
The following request parameter list only provides API request parameters and some common parameters. For the complete common parameter list, see Common Request Parameters.
Parameter Name | Required | Type | Description |
---|---|---|---|
Action | Yes | String | Common Params. The value used for this API: SendMessages. |
Version | Yes | String | Common Params. The value used for this API: 2020-02-17. |
Region | No | String | Common Params. This parameter is not required for this API. |
Topic | Yes | String | Name of the topic to which to send the message. It is better to be the full path of the topic, such as tenant/namespace/topic . If it is not specified, public/default will be used by default. |
Payload | Yes | String | Content of the message to be sent |
StringToken | No | String | Token used for authentication, which is optional and will be automatically obtained by the system. |
ProducerName | No | String | Producer name, which is randomly generated and must be globally unique. If you set the producer name manually, the producer may fail to be created, causing message sending failure. This parameter is used only when a specific producer is allowed to produce messages. It won’t be used in most cases. |
SendTimeout | No | Integer | Message sending timeout period, which is 30s by default. |
MaxPendingMessages | No | Integer | Maximum number of produced messages which can be cached in the memory. Default value: 1000 |
Parameter Name | Type | Description |
---|---|---|
MessageId | String | messageID, which must be globally unique and is the metadata information used to identify the message. Note: this field may return null, indicating that no valid values can be obtained. |
ErrorMsg | String | Returned error message. If an empty string is returned, no error occurred. Note: this field may return null, indicating that no valid values can be obtained. |
RequestId | String | The unique request ID, which is returned for each request. RequestId is required for locating a problem. |
This example shows you how to send a single message.
The message cannot be sent to a non-persistent topic.
POST / HTTP/1.1
Host: tdmq.tencentcloudapi.com
Content-Type: application/json
X-TC-Action: SendMessages
<Common request parameters>
{
"Topic": "tenant/namespace/topic",
"Payload": "\"hello TDMQ\""
}
{
"Response": {
"RequestId": "36713f94-d07d-4b96-babf-42d139276f23",
"MessageId": "71:11:0:0",
"ErrorMsg": ""
}
}
TencentCloud API 3.0 integrates SDKs that support various programming languages to make it easier for you to call APIs.
The following only lists the error codes related to the API business logic. For other error codes, see Common Error Codes.
Error Code | Description |
---|---|
FailedOperation.CreateProducerError | An error occurred while creating the producer. |
FailedOperation.CreatePulsarClientError | An error occurred while creating the TDMQ client. |
FailedOperation.MaxMessageSizeError | The message size exceeds the upper limit of 1 MB. |
FailedOperation.MessageIDError | The uploaded msgID is incorrect. |
FailedOperation.ReceiveError | An error occurred while receiving the message. |
FailedOperation.ReceiveTimeout | Message receiving timed out. Please try again. |
FailedOperation.SendMessageTimeoutError | Message sending timed out. |
FailedOperation.TopicTypeError | Please use a partition topic. |
InvalidParameter.TenantNotFound | The uploaded tenant name is incorrect. |
InvalidParameter.TokenNotFound | The correct token was not obtained. |
InvalidParameterValue.TopicNotFound | The uploaded topic name is incorrect. |
Was this page helpful?