The documentation for Events CRUD: https://community.telligent.com/community/11/w/api-documentation/64620/show-events-rest-endpoint
Shows that I should receive a JSON object containing Event and Errors (matching the other Object types in the API). However when I use the API to list and retrieve Events I'm receiving a duplicated Nested response Object like:
{
"Event":{
"Errors":[],
"Event":{
...
}
},
"Errors":[]
}
Is this expected behavior and the documentation is incorrect, or is this a Bug currently?