Update profile
Updates specific fields on a profile. Only the fields included in the request body are modified. To update file upload fields, use a multipart/form-data body instead of JSON.
For tags: this endpoint replaces the entire tag list. To add tags without removing existing ones, use PUT /tags/add instead.
Path Parameters
- Type: stringprofile
_id requiredUnique identifier of the profile.
Responses
- application/json
- application/json
- application/json
- application/json
Request Example for patch/apis/profiles/profiles/{profile_id}
curl https://school.fullfabric.cloud/apis/profiles/profiles/507f1f77bcf86cd799439011 \
--request PATCH \
--header 'FF-Auth: YOUR_SECRET_TOKEN'
{
"id": "6385bdd4976a7719120108e9",
"first_name": "Sophie",
"last_name": "Martin",
"email": "sophie.martin@example.com",
"__nationality": "French",
"__date_of_birth": "1995-03-14",
"__gender": "Female",
"__phone": "+44 7700 900123",
"updated_at": 1776330789
}