post https://api.accelevents.com/rest/event/$/people/getEventInterestsWithPaginationAndAscendingByInterestName
This API is used to get the list of interest tags of an event sorted in ascending order based on their name.
To call this API, you need to pass
- the eventurl in the path parameter.
- authorisation token in the header.
- A JSON object, in the request body, which has a page, size of the result, and the search string (the empty string used to retrieve all data and non-empty string used to retrieve filter data).
In response, it includes total records, filtered records, data array which include the name of interest and error if have.
Here is the Description of Response fields.
Field | Description |
---|---|
recordsTotal | It represent total number of record. |
recordsFiltered | It represent number of filtered record. |
data | It represent array of interest name. |
error | It represent string error message. |
Here is the Description of the Error code
Response Status Code | Error Code | Description |
---|---|---|
401 | 4010101 | Not authorized to access. |
404 | 4040200 | Event not found. |
406 | Not valid Json format |