Partially updates a search request for a customer. Requires SITE_CUSTOMER:WRITE permission.
Only provided fields are modified. Criteria are replaced entirely when provided (not merged with existing ones).
Security
bearerAuth
Internal note about this search request.
Example:"Client flexible on surface, priority is location near metro"
Replacement criteria array. Same format as create. Replaces all existing criteria when provided.
- Mock serverhttps://api-doc.immo-facile.com/_mock/openapi/customers/{customerId}/search-requests/{searchRequestId}
- https://v2.immo-facile.com/api/v2/sitehttps://v2.immo-facile.com/api/v2/site/customers/{customerId}/search-requests/{searchRequestId}
curl -i -X PATCH \
https://api-doc.immo-facile.com/_mock/openapi/customers/789/search-requests/42 \
-H 'Authorization: Bearer <YOUR_opaque_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"name": "Apartment T3 Paris 15 budget 400k",
"comment": "Client flexible on surface, priority is location near metro",
"is_active": true,
"has_email_alert": true,
"has_sms_alert": false,
"intended_use_id": 0,
"reason_for_purchase_id": 0,
"current_resale_id": 0,
"timeframe_id": 0,
"keyword": "string",
"wording": "string",
"alertEmail": true,
"alertSms": true,
"criteria": [
{
"id": "string",
"operator": "CONTIENT",
"value": null
}
]
}'