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:
| Parameter | Is optional | Default | Description |
|---|---|---|---|
| pageNum | true | 0 | The page number |
| pageSize | true | 10 | The page size |
| search | true | Search 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
}Updated about 1 month ago
