> ## Documentation Index
> Fetch the complete documentation index at: https://dev.puppetvendors.com/llms.txt
> Use this file to discover all available pages before exploring further.

# PayPal

> Retrieve the vendor's PayPal integration

<Note>
  **V2 Alpha** — This endpoint is part of the V2 API preview. Breaking changes may occur.
</Note>

## Overview

Retrieve the PayPal integration configuration for payout processing. Email is returned masked.

## Response

```json 200 theme={null}
{
  "success": true,
  "data": {
    "integration": {
      "type": "paypal",
      "connected": true,
      "email": "v****r@premiumcrafts.com",
      "updatedAt": "2024-05-01T08:00:00.000Z"
    }
  }
}
```

## Example

```bash theme={null}
curl -X GET "https://staging-api.puppetvendors.com/integrations/paypal" \
  -H "x-access-token: YOUR_VENDOR_JWT_TOKEN"
```
