{
"opencollection": "1.0.0",
"info": {
"name": "Paypal Subscriptions Authorizations Trackers API",
"version": "1.6"
},
"items": [
{
"info": {
"name": "Trackers",
"type": "folder"
},
"items": [
{
"info": {
"name": "Update or cancel tracking information for a PayPal order",
"type": "http"
},
"http": {
"method": "PATCH",
"url": "https://api-m.sandbox.paypal.com/v2/checkout/orders/:id/trackers/:tracker_id",
"params": [
{
"name": "id",
"value": "",
"type": "path",
"description": "The ID of the order that the tracking information is associated with."
},
{
"name": "tracker_id",
"value": "",
"type": "path",
"description": "The order tracking ID."
}
],
"body": {
"type": "json",
"data": "{}"
},
"auth": {
"type": "oauth2",
"flow": "client_credentials",
"accessTokenUrl": "/v1/oauth2/token",
"credentials": {
"clientId": "{{clientId}}",
"clientSecret": "{{clientSecret}}"
}
}
},
"docs": "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 | Onl"
},
{
"info": {
"name": "Paypal List tracking information",
"type": "http"
},
"http": {
"method": "GET",
"url": "https://api-m.sandbox.paypal.com/v1/shipping/trackers",
"params": [
{
"name": "transaction_id",
"value": "",
"type": "query",
"description": "Filters the tracking information that appears in the response by a PayPal transaction ID."
},
{
"name": "tracking_number",
"value": "",
"type": "query",
"description": "Filters the tracking information that appears in the response by a tracking number."
},
{
"name": "account_id",
"value": "",
"type": "query",
"description": "Encrypted PayPal Account ID of the buyer or seller."
}
],
"auth": {
"type": "oauth2",
"flow": "client_credentials",
"accessTokenUrl": "/v1/oauth2/token",
"credentials": {
"clientId": "{{clientId}}",
"clientSecret": "{{clientSecret}}"
}
}
},
"docs": "Lists tracking information that meet search criteria. The tracking ID is required but the tracking number is optional."
},
{
"info": {
"name": "Add tracking information for PayPal transaction",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://api-m.sandbox.paypal.com/v1/shipping/trackers",
"body": {
"type": "json",
"data": "{}"
},
"auth": {
"type": "oauth2",
"flow": "client_credentials",
"accessTokenUrl": "/v1/oauth2/token",
"credentials": {
"clientId": "{{clientId}}",
"clientSecret": "{{clientSecret}}"
}
}
},
"docs": "Adds tracking information for a PayPal transaction."
},
{
"info": {
"name": "Paypal Show tracking information",
"type": "http"
},
"http": {
"method": "GET",
"url": "https://api-m.sandbox.paypal.com/v1/shipping/trackers/:id",
"params": [
{
"name": "id",
"value": "",
"type": "path",
"description": "The ID of the tracker in the transaction_id-tracking_number format."
},
{
"name": "account_id",
"value": "",
"type": "query",
"description": "Encrypted PayPal Account ID of the buyer or seller."
}
],
"auth": {
"type": "oauth2",
"flow": "client_credentials",
"accessTokenUrl": "/v1/oauth2/token",
"credentials": {
"clientId": "{{clientId}}",
"clientSecret": "{{clientSecret}}"
}
}
},
"docs": "Shows tracking information, by tracker ID, for a PayPal transaction."
},
{
"info": {
"name": "Update or cancel tracking information for PayPal transaction",
"type": "http"
},
"http": {
"method": "PUT",
"url": "https://api-m.sandbox.paypal.com/v1/shipping/trackers/:id",
"params": [
{
"name": "id",
"value": "",
"type": "path",
"description": "The ID of the tracker in the transaction_id-tracking_number format."
}
],
"body": {
"type": "json",
"data": "{}"
},
"auth": {
"type": "oauth2",
"flow": "client_credentials",
"accessTokenUrl": "/v1/oauth2/token",
"credentials": {
"clientId": "{{clientId}}",
"clientSecret": "{{clientSecret}}"
}
}
},
"docs": "Updates or cancels the tracking information for a PayPal transaction, by ID. To cancel tracking information, call this method and set the status to CANCELLED. For more information, see Update or cancel tracking information."
}
]
}
],
"bundled": true
} |