Stream Message Resource
A Stream Message is a JSON message that can be sent at a high rate to an elastic group of subscribers.
- Messages are ephemeral - they can be published (created), but they cannot be queried, updated or deleted
- The maximum Message payload size as serialized JSON is 4KB.
- The maximum Message publishing rate per Stream is 30 per second.
- Message delivery to remote endpoints is not guaranteed.
- Messages may be received by remote endpoints in a different order than they were published.
Stream Message properties
Resource Properties in REST API format | |
---|---|
sid
|
The unique string that we created to identify the Stream Message resource. |
data
|
An arbitrary, schema-less object that contains the Stream Message body. Can be up to 4 KiB in length. |
Create a Stream Message resource
https://sync.twilio.com/v1/Services/{ServiceSid}/Streams/{StreamSid}/Messages
Publishes a new message to the Stream. The message contains an arbitrary JSON object that is serialized and percent-encoded as a POST parameter.
Parameters
Parameters in REST API format | |
---|---|
service_sid
Path
|
The SID of the Sync Service to create the new Stream Message in. |
stream_sid
Path
|
The SID of the Sync Stream to create the new Stream Message resource for. |
data
Required
|
A JSON string that represents an arbitrary, schema-less object that makes up the Stream Message body. Can be up to 4 KiB in length. |
Example 1
Need some help?
We all do sometimes; code is hard. Get help now from our support team, or lean on the wisdom of the crowd by visiting Twilio's Stack Overflow Collective or browsing the Twilio tag on Stack Overflow.