A recipient (also known as a beneficiary) is the person or business receiving a payment.

When creating a transaction, you can specify the recipient in one of two ways:

  1. Inline recipient – include the recipient details directly in the transaction request.
  2. Stored recipient – reference a previously stored recipient using its identifier.

Stored recipients allow you to reuse recipient details across multiple transactions.

Notable fields

Field

Description

Account

Contains the bank account details Vitesse uses to route and process payments to the recipient.

For example:

"Account": {
  "SortCode": "112233",
  "AccountNumber": "22233445"
}

The exact fields required depend on:

  • Destination country
  • Currency
  • Payment route
Typical account fields by route
RouteTypical account fields
UK GBPSort code + account number
US USDABA code + account number
EU EURIBAN
International SWIFTSWIFT/BIC + account number or IBAN

Vitesse validates the account details against the routing rules for the specified country and currency when you create or update a stored recipient.

Type

Specifies the recipient type, either:

  • Person (default) – individual recipient
  • Business – business or corporate recipient

If omitted, Vitesse uses Person by default.

Inline recipient

To provide recipient details directly in the transaction request, include a Recipient object.

Example:
{
  "SendValue": 100.00,
  "SendCurrency": "EUR",
  "Recipient": {
    "Name": "Victoria Lau",
    "Country": "GB",
    "Currency": "GBP",
    "RecipientReference": "Claim-51837",
    "Account": {
      "SortCode": "112233",
      "AccountNumber": "22233445"
    }
  }
}

The following fields are required when specifying a recipient inline:

  • Name
  • Country
  • Currency
  • RecipientReference
  • Account

The required account fields depend on the payment route and destination country. For more information, see Rules.

Stored recipient

Instead of including full recipient details, you can reference a stored recipient.

For more information, see Manage stored recipients.