v51

latestOpenAPI 3.1.0raw.githubusercontent.com2026-08-0172165343.2 KB
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",
  "topic": "some_topic_name",
  "consumer_group": "some_consumer_group",
  "dlq_topic": "some_topic_name"
}

Response

retry_scheduleinteger[] required
dlq_topicstring nullable

Example response

{
  "dlq_topic": "some_topic_name"
}