Events API not returning realtime_servers
I'm following the documentation here: https://developer.box.com/reference/options-events/ to get the list of long polling URLs for my app, but my results don't include any `realtime_server` entries, only a single `event` entry.
```json
{
entries: [
{
type: 'event',
event_id: 'some_event_ID',
created_by: [Object],
created_at: '2021-01-12T11:21:43-08:00',
recorded_at: '2021-01-12T11:21:44-08:00',
event_type: 'ITEM_CREATE',
session_id: 'bvqy9vgmlin0cnvu',
source: [Object]
}
],
chunk_size: 1,
next_stream_position: 18578959018927400
}
```
My code is pretty straightforward, just a get request against https://api.box.com/2.0/events/. Did I setup my app incorrectly?
Please sign in to leave a comment.
Comments
2 comments