cURL
curl --request PUT \ --url https://staging-api.puppetvendors.com/integrations/paypal \ --header 'Content-Type: application/json' \ --header 'x-access-token: <api-key>' \ --data ' { "email": "<string>" } '
Configure or update the vendor’s PayPal integration
Documentation IndexFetch the complete documentation index at: https://dev.puppetvendors.com/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: https://dev.puppetvendors.com/llms.txt
Use this file to discover all available pages before exploring further.
{ "success": true, "data": { "integration": { "type": "paypal", "connected": true, "updatedAt": "2024-06-15T10:00:00.000Z" } } }
curl -X PUT https://staging-api.puppetvendors.com/integrations/paypal \ -H "Content-Type: application/json" \ -H "x-access-token: YOUR_VENDOR_JWT_TOKEN" \ -d '{ "email": "vendor@premiumcrafts.com" }'
Was this page helpful?