curl --request PATCH \
--url https://api.example.com/clients/{id} \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"phone": "<string>",
"city": "<string>",
"street": "<string>",
"country": "<string>",
"zipCode": "<string>",
"language": "<string>"
}
'