action cloud_elements_get_orders_refunds { label: "Retrieve the refunds in the eCommerce system for the specified order" provider: cloud_elements method: GET path: "/orders/{orderId}/refunds" encoding: json input: { type: "object" properties: { Authorization: { type: "string" } fields: { type: "string" } nextPage: { type: "string" } orderId: { type: "string" } pageSize: { type: "string" } } required: ["Authorization", "orderId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }