Querator V1
Defer a message to be retried
Defer an item to be processed again at a later date/time. Once the enqueue_at time is reached, querator will enqueue this item into the specified queue and the attempted counter for this item will increment by 1.
If the item should not be retried, but failed immediately. Set dead: true and the item will be placed in the dead letter queue regardless of the number of attempts left on the message.
If you wish to fail a message such that it is deleted from the queue and never offered to another consumer, nor placed into the dead letter queue, then call /queue.complete instead.
post/v1/queue.defer