Skip to content

Instantly share code, notes, and snippets.

@jcleblanc
Created June 26, 2014 06:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jcleblanc/54afcf22e9f0c12120a5 to your computer and use it in GitHub Desktop.
Save jcleblanc/54afcf22e9f0c12120a5 to your computer and use it in GitHub Desktop.
paypal_rest_subscriptions_user_agreement
curl -v POST https://api.sandbox.paypal.com/v1/payments/billing-agreements
-H 'Content-Type:application/json' \
-H 'Authorization: Bearer {accessToken}' \
-d '{
"name": "Main Subscription",
"description": "Fruit of the Month Subscription",
"start_date": "2015-02-19T00:37:04Z",
"plan": {
"id": "P-0NJ10521L3680291SOAQIVTQ"
},
"payer": {
"payment_method": "paypal"
},
"shipping_address": {
"line1": "My Business",
"line2": "1665 Biscayne rd",
"city": "Miami",
"state": "FL",
"postal_code": "33141",
"country_code": "US"
}
}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment