action billbee_order_api_find { label: "Find a single order by its external id (order number)" provider: billbee method: GET path: "/api/v1/orders/find/{id}/{partner}" encoding: json input: { type: "object" properties: { id: { type: "string" } partner: { type: "string" } } required: ["id", "partner"] additionalProperties: false } output: { type: "object" } }