...
There are two separate endpoints to support different publishing cases as described above. They both share the same request format.
Request Schema
Code Block language js { "type" : "record", "name" : "PublishRequest", "fields" : [ { "name" : "transactionWritePointer", "type" : [ "long", "null" ] }, { "name" : "messages", "type" : { "type" : "array", "items" : "bytes"
}}
} ] }
- Request body
- Can be Avro binary or JSON, based on the request - Content-Type: application/json or avro/binary
Schema Fields:
messages
- Contains an array of byte arrays that correspond to messagestransactionWritePointer
- Corresponds to a transaction write pointer.
...