Request
The unique id of the message.
Response
Base64 encoded request body
The time when the message was created in milliseconds.
The endpoint Id the message was sent to. Only available if the message was
sent to an endpoint.
The HTTP headers sent to your API.
The time at which message should be delivered at the latest.
The delay in seconds before the message is delivered.
The time before which the message should not be delivered.
The number of retries that should be attempted in case of delivery
failure.
The topic name the message was sent to Only available if the message was sent to a topic.
The topic Name the message was sent to Only available if the message was sent to a topic. This might be outdated if you have since changed the topic name. In that case, please rely on the topic id instead because it is guaranteed to be consistent.
The url where this message is being sent to.
curl https://qstash.upstash.io/v1/messages/msg_123 \
-H "Authorization: Bearer <token>"
{
"messageId" : "msg_123" ,
"topicId" : "tpc_123" ,
"url" : "https://example.com" ,
"method" : "POST" ,
"header" : {
"My-Header" : "my-value"
},
"body" : "{ \" foo \" : \" bar \" }" ,
"createdAt" : 1620000000000
}