Skip to content

List actions for a customer

Request

Returns paginated action history for a customer. Requires SITE_CUSTOMER:READ permission.

Actions are commercial activities logged on a customer (calls, visits, emails, etc.). Uses offset-based pagination with cursor parameter.

Security
bearerAuth
Path
customerIdintegerrequired

ID of the customer.

Example:789
Query
cursorinteger

Offset for pagination (number of items to skip). Default 0.

Default:0
Example:cursor=0
curl -i -X GET \
  'https://api-doc.immo-facile.com/_mock/openapi/customers/789/actions?cursor=0' \
  -H 'Authorization: Bearer <YOUR_opaque_HERE>'

Responses

Paginated list of actions

Bodyapplication/json
dataArray of objects(ActionResponse)
next_cursorinteger or null

Next offset value, or null if no more results.

has_moreboolean

Whether more results are available.

Response
{ "data": [ {} ], "next_cursor": 0, "has_more": true }