Request
Use the Request endpoint to track the status of asynchronous API calls you've already made.
Get the request status
GET
/request/:request_id/status
Get the processing status of an issued asynchronous request, like a page. The request_id
in the URL is the v4 UUID returned from the original Hotpot API call.
Headers
Name | Value |
---|---|
Authorization | Bearer <your API key> |
Response
- 200
- 400
{
"response": {
"message_request_id":"<hotpot request ID>",
"status": "accepted",
"status_message": "Page queued for delivery!",
"errors": [],
"message_id": "<message ID>"
}
}
[]