Trackers

Use the /trackers resource to update and retrieve tracking information for PayPal orders.

Update or cancel tracking information for a PayPal order

patch
/v2/checkout/orders/{id}/trackers/{tracker_id}

Updates or cancels the tracking information for a PayPal order, by ID. Updatable attributes or objects:

Attribute
Op
Notes

items

replace

Using replace op for items will replace the entire items object with the value sent in request.

notify_payer

replace, add

status

replace

Only patching status to CANCELLED is currently supported.

chevron-right
lockRequired scopes
This endpoint requires the following scopes:
  • : Manage payments and checkout workflow.
Authorizations
OAuth2clientCredentialsRequired

Oauth 2.0 authentication

Token URL:
Path parameters
idstring · min: 1 · max: 36Required

The ID of the order that the tracking information is associated with.

Pattern: ^[A-Z0-9]+$
tracker_idstring · min: 1 · max: 36Required

The order tracking ID.

Pattern: ^[A-Z0-9]+$
Bodyobject · Patch[]

An array of JSON patch objects to apply partial updates to resources.

opstring · enumRequired

The operation.

Possible values:
pathstringOptional

The JSON Pointer to the target document location at which to complete the operation.

valueanyOptional

The value to apply. The remove, copy, and move operations do not require a value. Since JSON Patch allows any type for value, the type property is not specified.

fromstringOptional

The JSON Pointer to the target document location from which to move the value. Required for the move operation.

Responses
patch
/v2/checkout/orders/{id}/trackers/{tracker_id}

No content

Last updated

Was this helpful?