Request Object
{
"intent": "order",
"payer": {
"payment_method": "paypal"
},
"redirect_urls": {
"return_url": "https://my-gala.com/v2/vendor/paypal/rest-api-sdk-php/sample/payments/OrderAuthorize.php?success=true",
"cancel_url": "https://my-gala.com/v2/vendor/paypal/rest-api-sdk-php/sample/payments/OrderAuthorize.php?success=false"
},
"transactions": [
{
"amount": {
"currency": "USD",
"total": "20",
"details": {
"shipping": "1.20",
"tax": "1.30",
"subtotal": "17.50"
}
},
"item_list": {
"items": [
{
"name": "Ground Coffee 40 oz",
"currency": "USD",
"quantity": 1,
"price": "7.50"
},
{
"name": "Granola bars",
"currency": "USD",
"quantity": 5,
"price": "2"
}
]
},
"description": "Payment description",
"invoice_number": "67375047d044b"
}
]
}
Response Object
{
"intent": "order",
"payer": {
"payment_method": "paypal"
},
"redirect_urls": {
"return_url": "https://my-gala.com/v2/vendor/paypal/rest-api-sdk-php/sample/payments/OrderAuthorize.php?success=true",
"cancel_url": "https://my-gala.com/v2/vendor/paypal/rest-api-sdk-php/sample/payments/OrderAuthorize.php?success=false"
},
"transactions": [
{
"amount": {
"total": "20.00",
"currency": "USD",
"details": {
"subtotal": "17.50",
"tax": "1.30",
"shipping": "1.20"
}
},
"description": "Payment description",
"invoice_number": "67375047d044b",
"item_list": {
"items": [
{
"name": "Ground Coffee 40 oz",
"price": "7.50",
"currency": "USD",
"quantity": 1
},
{
"name": "Granola bars",
"price": "2.00",
"currency": "USD",
"quantity": 5
}
]
},
"related_resources": []
}
],
"id": "PAYID-M43VASA4S337978BR7090811",
"state": "created",
"create_time": "2024-11-15T13:44:40Z",
"links": [
{
"href": "https://api.sandbox.paypal.com/v1/payments/payment/PAYID-M43VASA4S337978BR7090811",
"rel": "self",
"method": "GET"
},
{
"href": "https://www.sandbox.paypal.com/cgi-bin/webscr?cmd=_express-checkout&token=EC-52B20331VN5709259",
"rel": "approval_url",
"method": "REDIRECT"
},
{
"href": "https://api.sandbox.paypal.com/v1/payments/payment/PAYID-M43VASA4S337978BR7090811/execute",
"rel": "execute",
"method": "POST"
}
]
}