Enable in-person pickup
Last updated: Feb 27th, 8:28am
When you enable in-person
Note: These instructions are available to US partners only. For all other countries, please contact PayPal.
When you enable in-person pickup, you can capture the transaction on your platform even though buyers and sellers meet offline to complete the purchase. Enabling this feature prevents platform leakage while giving your sellers the flexibility to meet their buyers in person.
Know before you code
- You must be an approved partner to use this integration.
- You must complete seller onboarding before you use this integration. During seller onboarding, you must enable casual and business accounts to accept payment, and you must pass
PPCP
as the value of the products array. - You must have an access token.
- This integration is a PCI Compliant - SAQ A solution for accepting credit card payments directly on your website.
How it works
The flow for enabling in-person pickup is:
- You create an order when a buyer selects PayPal as a payment method on your platform.
- You authorize the order when the buyer reserves the item. Authorization puts the money on hold.
- You capture the authorization when the buyer and seller meet in person and the buyer completes the purchase on your platform. Capture moves the money from the buyer to the seller.
Note: This feature does not support seller protection because the buyer can verify items before purchasing.
Create an order
Before you authorize funds, you must create an order with the intent
field set to AUTHORIZE
. To create an order, copy the following code and modify it.
- cURL
- Node
1curl -v -X POST https://api-m.sandbox.paypal.com/v2/checkout/orders2-H 'Content-Type: application/json'3-H 'Authorization: Bearer <Access-Token>'4-H 'PayPal-Partner-Attribution-Id: <BN-Code>'5-d '{6 "intent": "AUTHORIZE",7 "application_context" : {8 "shipping_preference" : "SET_PROVIDED_ADDRESS"9 },10 "purchase_units": [11 {12 "amount": {13 "currency_code": "USD",14 "value": "10.00"15 },16 "payee": {17 "email_address": "seller@example.com"18 },19 "shipping" : {20 "address": {21 "address_line_1": "500 Hillside Street",22 "address_line_2": "#100",23 "admin_area_2": "San Jose",24 "admin_area_1": "CA",25 "postal_code": "95131",26 "country_code": "US"27 },28 "type" : "PICKUP_IN_PERSON"29 }30 }31 ]32}'
Modify the code
After you copy the sample request, modify the following:
- Use the
purchase_units/payee
object to specify the end receiver of the funds. - Shipping type must be set to
PICKUP_IN_PERSON
.