WithdrawalStatusUpdateRequest
Withdrawal status update object.
Possible values: [PENDING
, PROCESSING
]
PENDING
paymentProperties object[]
List of payment option specific properties required for processing of the payment.
Payment property key. Defines available payment property key and their meaning.
Card payment properties:
- CARD_CVV - Card CVV is required to confirm the card payment during deposit.
- Valid value:
123
- Valid value:
- CARD_SAVE_INSTRUMENT - The user agrees to save the card for further payments.
- Valid value:
true
- Valid value:
- PAYMENT_CONFIRMATION - For PCI-DSS level 3 partners card information is collected in Paysafe hosted interface. |Valid values|Description| |---|---| |EMBEDDED|Default The payment is confirmed in the hosted Paysafe interface | |OUTSOURCED| The payment flow is returned to caller after collection of card data|
Possible values: [CARD_CVV
, CARD_SAVE_INSTRUMENT
, SAVE_RECIPIENT
, PAYMENT_CONFIRMATION
]
The value of the payment property.
recipient object
Withdrawal recipient request object.
Label for the recipient.
Use this field to label the recipient, if you want to make additional payments to the same party.
If not specified the label is generated by combining the title, first name, and last name.
If ACTIVE
recipient with the same label already exists a number suffix is added.
Possible values: non-empty
and <= 100 characters
Supplier1
Personal title, Mr., Dr., etc.
Possible values: <= 15 characters
Mr.
First name. Only latin characters, spaces, single quotes, and hyphens are allowed.
Possible values: non-empty
and <= 50 characters
Tom
Last name. Only latin characters, spaces, single quotes, and hyphens are allowed.
Possible values: non-empty
and <= 50 characters
Jones
address objectrequired
Address of the customer.
ISO-3166 Alpha 2
Possible values: >= 2 characters
and <= 2 characters
GB
US state postal abbreviation. Not used for non-US territories.
Possible values: <= 2 characters
City.
Possible values: <= 50 characters
London
Postal code.
Possible values: non-empty
and <= 50 characters
E1 6AN
The first line of the address.
Possible values: <= 200 characters
12 Brushfield Street
The second line of the address.
Possible values: <= 200 characters
contactInfo object
Represents contact information.
Mobile number.
Possible values: <= 50 characters
Email.
Possible values: >= 6 characters
and <= 100 characters
paymentInstrument objectrequired
Represents a payment instrument, used for third-party payments. Here are the valid instrumentType values:
- SEPA_BANK_ACCOUNT - IBAN Bank Account for EEA international transfers
- UK_BANK_ACCOUNT - UK Bank Account for somestic UK transfers
- US_BANK_ACCOUNT - US Bank Account for domestic USA transfers
The instrument id
Represents the type of the recipient instrument.
| Value | Description| |---|---| | SEPA_BANK_ACCOUNT| SEPA Bank account | | UK_BANK_ACCOUNT | UK Bank account | | US_BANK_ACCOUNT | US Bank account |
Possible values: [SEPA_BANK_ACCOUNT
, UK_BANK_ACCOUNT
, US_BANK_ACCOUNT
]
US_BANK_ACCOUNT
Recipient type.
Possible values: [BUSINESS
, INDIVIDUAL
]
scaDetails object
SCA authentication details, including information about the authentication process. It should be included in the request of any wallet operation that requires it due to PSD2 regulatory requirements.
- Included in the request - operation has already undergone SCA authentication and is authorized to proceed. The SCA details connect the wallet operation to the SCA authentication event.
- Not included in the request - operation either does not require SCA authentication or is being initiated for the first time, and the user's need for SCA is uncertain. If SCA is needed, the response will provide the SCA details for use in the subsequent execution of the wallet operation.
A distinct identifier for the SCA authentication event.
06bdcd2c-0cce-4b36-97ec-281c8f5d743c
A distinct identifier for the wallet operation. This identifier is used to associate the wallet operation with the SCA authentication event.
a5865fd6-18c2-45a8-9953-1c00eac36c36
{
"status": "PENDING",
"paymentProperties": [
{
"key": "CARD_CVV",
"value": "string"
}
],
"recipient": {
"label": "Supplier1",
"title": "Mr.",
"firstName": "Tom",
"lastName": "Jones",
"address": {
"countryCode": "GB",
"stateProvince": "string",
"city": "London",
"postalCode": "E1 6AN",
"address1": "12 Brushfield Street",
"address2": "string"
},
"contactInfo": {
"mobile": "string",
"email": "user@example.com"
},
"paymentInstrument": {
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"instrumentType": "US_BANK_ACCOUNT"
},
"type": "BUSINESS"
},
"scaDetails": {
"eventId": "06bdcd2c-0cce-4b36-97ec-281c8f5d743c",
"walletOperationId": "a5865fd6-18c2-45a8-9953-1c00eac36c36"
}
}