Get persons
Retrieve all persons. Supports filtering via query parameters and pagination. Admin users can include password hashes. Non-admin users only see minimal information.
Query parameters
-
Page number for pagination
-
Number of results per page
-
Whether to include relations
-
Include password hash (admin only)
GET
/data/persons
curl \
--request GET 'http://api.example.com/data/persons' \
--header "Authorization: $API_KEY"
Response examples (200)
Array-1
[
{}
]
{
"data": [
{}
],
"total": 100,
"nb_pages": 2,
"limit": 50,
"offset": 0,
"page": 1
}