v51

latestOpenAPI 3.1.0raw.githubusercontent.com2026-08-0172165343.2 KB
Msgs

Publish

Publishes messages to a topic within a namespace.

post/api/v1.msgs.publish

Request body

namespacestring nullable
topicstring required
idempotency_keystring nullable

Example request

{
  "namespace": "some_namespace",
  "topic": "some_topic_name",
  "idempotency_key": "my_idempotency_key"
}

Response

Example response

{
  "topics": [
    {
      "topic": "some_topic_name~0"
    }
  ]
}