Searches customers with cursor-based pagination. Requires SITE_CUSTOMER:READ permission and RS:CUSTOMER_SEARCH right.
Results are ordered by customers_id descending (most recent first).
Security
bearerAuth
Opaque pagination cursor from the previous response's meta.next_cursor. Omit for the first page.
- Mock serverhttps://api-doc.immo-facile.com/_mock/openapi/customers/search
- https://v2.immo-facile.com/api/v2/sitehttps://v2.immo-facile.com/api/v2/site/customers/search
curl -i -X POST \
https://api-doc.immo-facile.com/_mock/openapi/customers/search \
-H 'Authorization: Bearer <YOUR_opaque_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"email": "dupont@example.com",
"per_page": 25
}'Response
{ "data": [ { … } ], "meta": { "per_page": 50, "next_cursor": "eyJpZCI6MTIzfQ==", "prev_cursor": "string" }, "links": { "next": "string", "prev": "string" } }