Update a user associated with a customer.
Security
BearerAuth
PATCH
curl -i -X PATCH \
'https://api.luminovo.com/customers/{id}/users/{user_id}' \
-H 'Accept: application/api.luminovo.customer-user-v1+json' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"first_name": "string",
"last_name": "string",
"phone_number": "string",
"position": "string"
}'Response
{ "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "first_name": "string", "last_name": "string", "email": "string", "user_language": "string", "phone_number": "string", "position": "string", "customer": "0ac6320b-fa4d-4235-8d23-413a2b863bad" }