action cloud_elements_get_customer_by_id { label: "Retrieve a customer associated with a given ID from the eCommerce system. Specifying a customer with an ID that does not exist will result in an error response" provider: cloud_elements method: GET 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 } }