Updates a follow-up (e.g. rating). Requires SITE_CUSTOMER:WRITE permission.
Security
bearerAuth
- Mock serverhttps://api-doc.immo-facile.com/_mock/openapi/customers/{customerId}/follow-ups/{productId}
- https://v2.immo-facile.com/api/v2/sitehttps://v2.immo-facile.com/api/v2/site/customers/{customerId}/follow-ups/{productId}
curl -i -X PATCH \
https://api-doc.immo-facile.com/_mock/openapi/customers/789/follow-ups/12345 \
-H 'Authorization: Bearer <YOUR_opaque_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"rating": 4
}'Response
{ "data": { "customerId": 789, "productId": 12345, "opinion": { … }, "rating": 4, "visibleCustomer": true, "updatedAt": "2019-08-24T14:15:22Z", "progress": "string" } }