post https://api.accelevents.com/rest/event/$/people/getJobTitleListOfEventAttendeesWithPaginationAndAscendingByTitle
This API is used to get the list of job titles of all the attendees of an event. The response is paginated and sorted in alphabetical order. 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 page, and the search string.
The response includes a JSON object containing job titles as per the page, size, and search string.
Here is the description of response fields.
Field | Description |
---|---|
recordsTotal | Total number of Job Titles |
recordsFiltered | Number of job titles returned in the response |
data | List of JSON object. Each object represents one Job Title. |
title | It represent job title. |
company | It represent company name, in current API it will be always null. |
count | It represent count. In current API it will be always null. |
error | In case of any error, this will contain the 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 |