Skip to content

List follow-ups
Customers

Request

Returns paginated follow-ups (rapprochements) for a customer. Requires SITE_CUSTOMER:READ permission.

A follow-up links a customer to a product they are interested in, tracking the progression of the relationship.

Security
bearerAuth
Path
customerIdintegerrequired

ID of the customer.

Example:789
Query
per_pageinteger, <= 200

Number of results per page. Maximum 200, default 25.

Default:25
Example:per_page=50
curl -i -X GET \
  'https://api-doc.immo-facile.com/_mock/openapi/customers/789/follow-ups?per_page=50' \
  -H 'Authorization: Bearer <YOUR_opaque_HERE>'

Responses

Paginated list of follow-ups

Bodyapplication/json
dataArray of objects(FollowUpResponse)
metaobject(CursorPaginationMeta-2)

Pagination metadata for cursor-based listings.

Response
{ "data": [ {} ], "meta": { "per_page": 50, "next_cursor": "eyJpZCI6MTIzfQ==", "prev_cursor": "string" }, "links": { "next": "string", "prev": "string" } }