PurgeQueue
Written by
Updated at October 4, 2024
This method enables deleting messages in a queue. It takes some time to delete messages. To make sure no messages are left in the queue, pause sending messages to the queue and call the GetQueueAttributes method.
The messages that were sent to the queue before calling PurgeQueue
can be received by consumers; however, they will be deleted from the queue within the next minute.
Messages sent to the queue after calling PurgeQueue
will not be deleted.
Alert
You cannot retrieve any messages deleted from a queue.
Request
Request parameters
Parameter | Type | Required parameter | Description |
---|---|---|---|
QueueUrl |
string | Yes | URL of a queue. Case-sensitive. |
Response
Successful response fields
The response does not contain any fields.
PurgeQueue errors
For a list of errors common for all methods, see Common errors.
HTTP code | Error ID | Description |
---|---|---|
400 | NonExistentQueue |
The specified queue does not exist. |
403 | PurgeQueueInProgress |
The PurgeQueue method was already called for the specified queue over the last 60 seconds. |
Sample request
Action=PurgeQueue
&Version=2012-11-05
&QueueUrl=https://message-queue.api.cloud.yandex.net/b1g8ad42m6he********/dj6000000000********/sample-queue
For more information about forming requests, see General API request format.
Response example
<PurgeQueueResponse>
<ResponseMetadata>
<RequestId>c89ea19f-37d3a529-58142774-e25a26f-2618ff0043df35a802b77c94********</RequestId>
</ResponseMetadata>
</PurgeQueueResponse>