curl --request PUT \
--url https://your-instance.example.com/api/user/profile \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"fullName": "<string>",
"email": "jsmith@example.com",
"phoneNumber": "<string>",
"designation": "<string>",
"sinchPhoneNumber": "<string>",
"departmentId": "<string>",
"accessRole": "<string>",
"automations": {},
"callForwardingEnabled": true,
"notificationPreferences": {},
"persona": {
"user": "<string>",
"position": "<string>",
"userEmail": "<string>",
"organization": "<string>",
"organizationAddress": "<string>",
"leadProvider": "<string>",
"organizationWebsite": "<string>",
"organizationCity": "<string>",
"region": "<string>",
"timezone": "<string>",
"businessHours": "<string>"
}
}
'