action tradematic_delete_cloud_accounts_accountid_orders_orderid { label: "Cancel an order by ID" description: "Cancel an order by ID" provider: tradematic method: DELETE path: "/cloud/accounts/{accountid}/orders/{orderid}" encoding: json input: { type: "object" properties: { accountid: { type: "string" } orderid: { type: "string" } } required: ["accountid", "orderid"] additionalProperties: false } output: { type: "object" additionalProperties: true } }