action paypal_orders_trackers_patch { label: "Update or cancel tracking information for an order" description: "Updates or cancels the tracking information for a PayPal order, by ID. Updatable attributes or objects:

AttributeOpNotes
itemsreplaceUsing replace op for items will replace the entire items object with the value sent in request.
notify_payerreplace, add
statusreplaceOnly patching status to CANCELLED is currently supported.
" provider: paypal method: PATCH path: "/v2/checkout/orders/{id}/trackers/{tracker_id}" encoding: json input: { type: "object" properties: { id: { type: "string" } tracker_id: { type: "string" } } required: ["id", "tracker_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }