1curl -v -X POST https://api-m.sandbox.paypal.com/v2/checkout/orders \
2-H 'Content-Type: application/json' \
3-H 'PayPal-Request-Id: 7b92603e-77ed-4896-8e78-5dea2050476a' \
4-H 'Authorization: Bearer 6V7rbVwmlM1gFZKW_8QtzWXqpcwQ6T5vhEGYNJDAAdn3paCgRpdeMdVYmWzgbKSsECednupJ3Zx5Xd-g' \
5-d '{
6 "intent": "CAPTURE", "payment_source": {
7 "paypal": {
8 "experience_context": {
9 "user_action": "PAY_NOW",
10 "shipping_preference": "GET_FROM_FILE",
11 "return_url": "https://example.com/returnUrl",
12 "cancel_url": "https://example.com/cancelUrl",
13 "order_update_callback_config": {
14 "callback_events": ["SHIPPING_ADDRESS", "SHIPPING_OPTIONS"],
15 "callback_url": "https://example.com/orders?cart_id=h98h98h&session_id=89h788fg8"
16 }
17 }
18 }
19 }, "purchase_units": [{
20 "reference_id": "d9f80740-38f0-11e8-b467-0ed5f89f718b",
21 "items": [{
22 "name": "T-Shirt",
23 "description": "Super Fresh Shirt",
24 "unit_amount": {
25 "currency_code": "USD",
26 "value": "50.00"
27 },
28 "quantity": "1",
29 "category": "PHYSICAL_GOODS",
30 "sku": "sku01",
31 "image_url": "https://example.com/static/images/items/1/tshirt_green.jpg",
32 "url": "https://example.com/url-to-the-item-being-purchased-1",
33 "upc": {
34 "type": "UPC-A",
35 "code": "123456789012"
36 }
37 }, {
38 "name": "Shoes",
39 "description": "Running, Size 10.5",
40 "sku": "sku02",
41 "unit_amount": {
42 "currency_code": "USD",
43 "value": "25.00"
44 },
45 "quantity": "2",
46 "category": "PHYSICAL_GOODS",
47 "image_url": "https://example.com/static/images/items/1/shoes_running.jpg",
48 "url": "https://example.com/url-to-the-item-being-purchased-2",
49 "upc": {
50 "type": "UPC-A",
51 "code": "987654321012"
52 }
53 }],
54 "amount": {
55 "currency_code": "USD",
56 "value": "100.00",
57 "breakdown": {
58 "item_total": {
59 "currency_code": "USD",
60 "value": "100.00"
61 }
62 }
63 }
64 }]
65 }