Prepaid Transfers
Create a new prepaid card transfer
POST /prepaid-payment/transfers/Request Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| requestId | string | Yes | Unique idempotency key (max 64 characters) |
| paymentDate | string | Yes | Transfer execution date (ISO 8601 format) |
| currency | string | Yes | Payment currency (USD or CAD) |
| amount | number | Yes | Card amount |
| prepaidProduct | string | Yes | Product code (e.g., VISA-US, VISA-CA) |
| prepaidProductCountry | string | Yes | Product country (US, CA) |
| reason | string | No | Transfer reason |
| reference | string | No | Reference (max 16 characters) |
| internalReference | string | No | Internal reference (max 16 characters) |
| verificationType | string | Yes | Verification type (NONE/PHONE/PHONE_ADDRESS/ADDRESS) |
| verificationExpirationHours | number | Conditional | Required for PHONE/PHONE_ADDRESS/ADDRESS (e.g., 24) |
Recipient Information
| Parameter | Type | Required | Description |
|---|---|---|---|
| recipientType | string | Yes | COMPANY or INDIVIDUAL |
| recipientFirstName | string | Conditional | Required for INDIVIDUAL |
| recipientLastName | string | Conditional | Required for INDIVIDUAL |
| recipientCompanyName | string | Conditional | Required for COMPANY |
| recipientEmail | string | Yes | Recipient email address |
| recipientNickName | string | No | Recipient nickname |
| recipientPhoneNumber | string | Conditional | Required for PHONE verification (e.g., +972507471111) |
| recipientCity | string | No | Recipient city |
| recipientState | string | No | Recipient state |
| recipientCountry | string | Conditional | Required for PHONE_ADDRESS/ADDRESS |
| recipientPostalCode | string | Conditional | Required for PHONE_ADDRESS/ADDRESS |
| recipientAddress | string | No | Recipient address |
Response Example:
{
"requestId": "92ab47a-1234-481e-5046-1e24c34dae0a",
"paymentDate": "2024-01-01T00:00:00.000Z",
"prepaidProductCountry": "US",
"currency": "USD",
"amount": 10,
"prepaidProduct": "VISA-US",
"verificationType": "PHONE_ADDRESS",
"recipientFirstName": "John",
"recipientLastName": "Smith",
"recipientEmail": "[email protected]",
"recipientPhoneNumber": "+12145596993",
"recipientCountry": "US",
"recipientPostalCode": "77590",
"verificationExpiryHours": 24
}Updated 10 months ago
