action cloud_elements_create_customer { label: "Create a new customer in eCommerce system.With the exception of the 'id' field, the required fields indicated in the 'Customer' model are those required to create a new customer" provider: cloud_elements method: POST path: "/customers" encoding: json input: { type: "object" properties: { Authorization: { type: "string" } } required: ["Authorization"] additionalProperties: false } output: { type: "object" additionalProperties: true } }