Ably · Example Payload

Ably Subscribepushdevicetochannel Example

RealtimeWebSocketsPub/SubMessagingStreamingPush NotificationsChatLiveSync

Ably Subscribepushdevicetochannel Example is an example object payload from Ably, with 6 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdmethodpathsummaryrequestExamplesresponseExamples

Example Payload

Raw ↑
{
  "operationId": "subscribePushDeviceToChannel",
  "method": "POST",
  "path": "/push/channelSubscriptions",
  "summary": "Subscribe a device to a channel",
  "requestExamples": [
    {
      "contentType": "application/json",
      "example": {
        "channel": "my:channel",
        "clientId": "myClientId"
      }
    },
    {
      "contentType": "application/x-msgpack",
      "example": {
        "channel": "my:channel",
        "clientId": "myClientId"
      }
    },
    {
      "contentType": "application/x-www-form-urlencoded",
      "example": {
        "channel": "my:channel",
        "clientId": "myClientId"
      }
    }
  ],
  "responseExamples": []
}