Returns all users (agents/collaborators) for the authenticated site, with optional filters and cursor-based pagination. Requires SITE_ADMIN:READ permission and RS:ADMIN_ALL right.
Filters: All query parameters are optional. Combine them to narrow results.
Pagination: Uses cursor-based pagination. Pass meta.next_cursor from the previous response as the cursor parameter to fetch the next page.
Security
bearerAuth
- Mock serverhttps://api-doc.immo-facile.com/_mock/openapi/users
- https://v2.immo-facile.com/api/v2/sitehttps://v2.immo-facile.com/api/v2/site/users
curl -i -X GET \
'https://api-doc.immo-facile.com/_mock/openapi/users?firstname=Jean&lastname=Dupont&email=dupont%40example.com&status=1&without_deleted=true&delegation=true&agency_ids=123%2C456&per_page=50&telephone_code=true' \
-H 'Authorization: Bearer <YOUR_opaque_HERE>'Response
{ "data": [ { … } ], "meta": { "per_page": 50, "next_cursor": "eyJpZCI6MTIzfQ==", "prev_cursor": "string" }, "links": { "next": "string", "prev": "string" } }