action paypal_orders_track_create { label: "Add tracking information for an Order." description: "Adds tracking information for an Order." provider: paypal method: POST path: "/v2/checkout/orders/{id}/track" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" description: "The order details." } }