Get person view row
GET/orgs/:org_id/people/views/:view_id/rows
Retrieves list of people that have been added to the view, formatted according to the configuration of the view, i.e. using the columns of the view.
The data returned will be formatted like this:
[
{ "id": 1, "content": [ "Alice", "Andersson", "alice@example.com", true ] },
{ "id": 2, "content": [ "Bob", "Boblaw", "bob@example.com", false ] }
]
Where id is the ID of the person, and content contains the column-by-column
values corresponding to that person. The order and type of the entries in the
content array depends on the view column configuration.
Request
Responses
- 200
- 401
- 403
- 404
Example response for status 200
Example response for status 401
Example response for status 403
Example response for status 404