action cloud_elements_update_customer_by_id { label: "Update an customer associated with a given ID in the eCommerce system.The update API uses the PATCH HTTP verb, so only those fields provided in the customer object will be updated, and those fields not provided will be left alone. Updating a customer with a specified ID that does not exist will result in an error response" provider: cloud_elements method: PATCH path: "/customers/{id}" encoding: json input: { type: "object" properties: { Authorization: { type: "string" } id: { type: "string" } } required: ["Authorization", "id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }