Msgs

Queue Configure

Configures retry and DLQ behavior for a consumer group on a topic.

retry_schedule is a list of delays (in millis) between retries after a nack. Once exhausted, the message is moved to the DLQ (or forwarded to dlq_topic if set).

post/api/v1.msgs.queue.configure

Request body

namespacestring nullable
topicstring required
consumer_groupstring required
retry_scheduleinteger[]
dlq_topicstring nullable

Example request

{
  "namespace": "some_namespace"
}

Response

retry_scheduleinteger[] required
dlq_topicstring nullable

Changes