Recipient Type
Contains information about the recipient of a payment.
Remarks
A Recipient type contains information about the recipient of a payment (the party whose account is credited), or in the case of a refund transaction, the original recipient of the payment and the source of funds for the refund.
Fields
Amount String |
Amount to be paid to the recipient. This field is required. Limitations: Must not exceed $10,000 USD in any currency. The decimal separator must be a period (.) and the thousands separator a comma (,). No currency symbol ($) is to be sent. | ||||||||
Email String |
Recipient's email address This field is required. | ||||||||
InvoiceId String |
The invoice number for the payment. The data in this field shows on the transaction details report. (Use the AdaptivePaymentDetails component to generate reports). This field is optional. | ||||||||
PaymentType PaymentTypes |
The transaction subtype for the payment. Possible values are:
| ||||||||
PhoneCountryCode String |
The telephone country code of the receiver's phone number. For instance, the US is 1, Japan is 81, the United Kingdom is 44, and Ireland is 353. A full list of International Direct Dialing codes can be obtained from the International Telecommunication Union Annex to Operational Bulletin No. 930 (15.IV.2009) "LIST OF ITU-T RECOMMENDATION E.164 ASSIGNED COUNTRY CODES". This field is required if the PhoneNumber field is set. | ||||||||
PhoneExtension String |
An extension for the PhoneNumber. This field is optional. | ||||||||
PhoneNumber String |
The recipient's phone number. This field is optional. | ||||||||
Primary Boolean |
Indicates whether the recipient is the primary receiver. If this field is set to True, this is a chained payment. If the field is False, this is a simple or parallel payment. |
Constructors
[VB.NET] Public Recipient() [C#] public Recipient();
[VB.NET] Public Recipient(ByVal Email As String, ByVal Amount As String) [C#] public Recipient(string email, string amount);
[VB.NET] Public Recipient(ByVal Email As String, ByVal Amount As String, ByVal PhoneNumber As String) [C#] public Recipient(string email, string amount, string phoneNumber);