PUT
/profile/{userId}
curl \
--request PUT 'https://api.pairfon.com/profile/{userId}' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"firstName":"string","lastName":"string","phone":"string"}'
Request examples
{
"firstName": "string",
"lastName": "string",
"phone": "string"
}
Response examples (200)
{
"userId": "string",
"firstName": "string",
"lastName": "string",
"email": "hello@example.com",
"role": "string",
"phone": "string"
}