Update a customer by its ID.
Security
BearerAuth
PATCH
curl -i -X PATCH \
'https://api.luminovo.com/customers/{id}' \
-H 'Accept: application/api.luminovo.customer-v1+json' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"name": "string",
"default_contact_person": "e507307d-2e7f-49b5-b221-b3c8685ad5d4",
"customer_number": "string",
"language": null,
"business_data": null,
"billing_address": null
}'Customer updated.
Response
{ "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "name": "string", "billing_address": null, "default_contact_person": "e507307d-2e7f-49b5-b221-b3c8685ad5d4", "customer_number": "string", "language": "de", "vat_id": null, "commercial_register_number": "string" }