Show Sale
A sale is a completed payment. Use the /sale
resource to show sale details and refund a sale.
Show sale details
Show a sale's details by passing the sale_id
as a path parameter to /v1/payments/sale/{sale_id}
.
Note: This call returns only the sales that were created via the REST API.
Sample request
curl -v -X GET https://api-m.sandbox.paypal.com/v1/payments/sale/36C38912MN9658832 \
-H "Content-Type: application/json" \
-H "Authorization: Bearer Access-Token"
Sample response
A successful request returns the HTTP 200 OK status code and a JSON response body that shows sale details.
{
"id": "36C38912MN9658832",
"create_time": "2017-02-19T22:01:53Z",
"update_time": "2017-02-19T22:01:55Z",
"state": "completed",
"amount": {
"total": "7.47",
"currency": "USD"
},
"protection_eligibility": "ELIGIBLE",
"protection_eligibility_type": "ITEM_NOT_RECEIVED_ELIGIBLE,UNAUTHORIZED_PAYMENT_ELIGIBLE",
"transaction_fee": {
"value": "1.75",
"currency": "USD"
},
"parent_payment": "PAY-5YK922393D847794YKER7MUI",
"links": [
{
"href": "https://api-m.sandbox.paypal.com/v1/payments/sale/36C38912MN9658832",
"rel": "self",
"method": "GET"
},
{
"href": "https://api-m.sandbox.paypal.com/v1/payments/sale/36C38912MN9658832/refund",
"rel": "refund",
"method": "POST"
},
{
"href": "https://api-m.sandbox.paypal.com/v1/payments/payment/PAY-5YK922393D847794YKER7MUI",
"rel": "parent_payment",
"method": "GET"
}
]
}