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