Skip to content

Latest commit

 

History

History
69 lines (49 loc) · 1.03 KB

index.md

File metadata and controls

69 lines (49 loc) · 1.03 KB
code type title
true
page
join

join

Joins a previously created subscription.


Query Syntax

HTTP

Due to the synchronous nature of the HTTP protocol, real-time messaging is not supported

Other protocols

{
  "controller": "realtime",
  "action": "join",
  "body": {
    "roomId": "<subscription identifier>"
  },
  // optional
  "volatile": {}
}

Arguments

Optional:


Body properties

  • roomId: subscription identifier, returned by Kuzzle during upon a successful subscription

Response

Returns a roomId property containing the subscription identifier.

{
  "status": 200,
  "error": null,
  "index": null,
  "collection": null,
  "controller": "realtime",
  "action": "subscribe",
  "volatile": {},
  "requestId": "<unique request identifier>",
  "result": {
    "roomId": "<unique Kuzzle room identifier>"
  }
}