cURL
curl --request POST \ --url https://api.proficientai.com/users/{user_id} \ --header 'Content-Type: application/json' \ --data '{ "first_name": "<string>", "last_name": "<string>" }'
{ "id": "<string>", "object": "user", "created_at": 123, "external_id": "<string>", "first_name": "<string>", "last_name": "<string>", "live_mode": true, "updated_at": 123 }
Updates the properties of the specified user. Only the provided properties will be updated. Any properties not provided will be left unchanged.
The unique identifier of the user
The data with which a user is updated.