List all subscribers for a given event type
GEThttps://localhost:8900/subscribers/for/:event_type
Get all subscriptions of registered subscribers
Request​
Path Parameters
event_type stringrequired
The type of message
Responses​
- 200
The list of all subscribers which are subscribed
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
id string
The identifier of this subscriber
subscriptions
object
[
{
"id": "string",
"subscriptions": {}
}
]
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L 'https://localhost:8900/subscribers/for/:event_type' \
-H 'Accept: application/json'