action papinet_get_orders_order_id { label: "Get an `order`" description: "Gets the details of a specific `order`, including a paginated list of all its lines." provider: papinet method: GET path: "/orders/{orderId}" encoding: json input: { type: "object" properties: { orderId: { type: "string" format: "uuid" } } required: ["orderId"] additionalProperties: false } output: { type: "object" } }