Skip to main content
PUT
/
v2
/
vendor
/
integrations
/
paypal
Update PayPal Integration
curl --request PUT \
  --url https://api.puppetvendors.com/v2/vendor/integrations/paypal \
  --header 'Content-Type: application/json' \
  --header 'x-access-token: <api-key>' \
  --data '
{
  "email": "<string>"
}
'
V2 Alpha — This endpoint is part of the V2 API preview. Breaking changes may occur.

Overview

Set or update the PayPal email address used for payout processing.

Request Body

email
string
required
PayPal email address (must be valid email format).

Response

200
{
  "success": true,
  "data": {
    "integration": {
      "type": "paypal",
      "connected": true,
      "updatedAt": "2024-06-15T10:00:00.000Z"
    }
  }
}

Example

curl -X PUT https://api.puppetvendors.com/v2/vendor/integrations/paypal \
  -H "Content-Type: application/json" \
  -H "x-access-token: YOUR_VENDOR_JWT_TOKEN" \
  -d '{
    "email": "vendor@premiumcrafts.com"
  }'