curl --request PATCH \
--url https://api.example.com/customers/{customerId} \
--header 'Content-Type: application/json' \
--data '
{
"customFields": [
{
"key": "<string>",
"value": "<string>"
}
],
"name": "<string>",
"role": "<string>",
"siret": "<string>"
}
'