cURL
curl --request PATCH \ --url https://ai-loop.alpeadria.com/api/v1/users/{id} \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "Name": "<string>", "Surname": "<string>", "Company_Name": "<string>", "Company_Verified": true, "Permission": "<string>", "Phone": "<string>", "Address": "<string>", "JobTitle": "<string>" } '
{ "message": "User updated successfully." }
Update specific fields of a user’s account. Certain restrictions apply when Company_Verified is true.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
User updated successfully.