Skip to main content

Overview

In V2, all API requests are processed through a queued system for improved reliability and performance. When you make any API request (send message, react, etc.), you receive an immediate response with a queued_request_uuid. Use this method to check the actual response of your queued request.
Learn more about the V2 queued request system in the Queued Requests Documentation.

Get Queued Request

Retrieve the status and response of a queued API request using its UUID.
The response_status, response_body, and response_header will be null while the request is still being processed.

Response Fields

Polling Example

If you need to wait for a request to complete, you can implement polling with exponential backoff:
For production applications, consider using webhooks instead of polling to receive real-time notifications when messages are sent, delivered, or fail.