Get all transfers

Authentication requires either the x-api-key header or, for enhanced security, both x-signature and x-timestamp headers.``

GET /api/v1/paypal-payment/transfers

Request query:

ParameterIs optionalDefaultDescription
pageNumtrue0The page number
pageSizetrue10The page size
searchtrueSearch by first name, last name, company name, recipientEmail and recipientDestination

Response example:

{
  "items": [
    {
      "id": 1,
      "requestId": "79ab47a2-6148-481e-b04a-1e34c34dae0b",
      "paymentDate": "2024-08-31T12:00:00.000Z",
      "recipientDestinationType": "EMAIL",
      "recipientDestination": "[email protected]",
      "paymentExecutionDate": "2021-08-31T12:00:00.000Z",
      "currency": "USD",
      "status": "PROCESSING",
      "amount": 100,
      "reason": null,
      "requireApproval": false,
      "reference": "12332",
      "internalReference": null,
      "recipientType": "INDIVIDUAL",
      "recipientFirstName": "John",
      "recipientLastName": "Does",
      "recipientCompanyName": null,
      "recipientEmail": "[email protected]",
      "recipientNickName": "Joe",
      "recipientCity": "New York",
      "recipientState": "California",
      "recipientCountry": "US",
      "recipientPostalCode": "0128",
      "recipientAddress": null,
      "createdAt": "2024-08-31T12:00:00.000Z"
    }
  ],
  "totalCount": 112,
  "hasMore": true
}