API referencePlayground
Get message status
Retrieve only the status of a message (lightweight endpoint for polling). Useful for checking if message processing is complete without fetching full message data.
AuthorizationBearer <token>
JWT token for authentication
In: header
Path Parameters
sessionId*string
Playground session UUID
Format
uuidmessageId*string
Message UUID
Format
uuidResponse Body
application/json
application/json
application/json
curl -X GET "https://example.com/playground/sessions/497f6eca-6276-4993-bfeb-53cbbbba6f08/messages/497f6eca-6276-4993-bfeb-53cbbbba6f08/status"{ "success": true, "message": "string", "error": "string", "data": { "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "status": "pending", "sequenceNumber": 0, "timestamp": "2019-08-24T14:15:22Z" }}