action onsched_delete_consumer_v1_customers_id { label: "Delete Customer" description: "

Use this endpoint to permanently Delete a Customer object. A valid customer id is required.

" provider: onsched method: DELETE path: "/consumer/v1/customers/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }