action paypal_orders_get { label: "Show order details" description: "Shows details for an order, by ID.
Note: For error handling and troubleshooting, see Orders v2 errors." provider: paypal method: GET path: "/v2/checkout/orders/{id}" encoding: json input: { type: "object" properties: { fields: { type: "string" } id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" description: "The order details." } }