Axiym
Payout payload

Sender and UBOs

The sender object identifies the business performing the payout and the natural persons who ultimately own or control it.

Sender fields

FieldType or formatRequirednessDescription
sender.nameStringRequiredRegistered legal business name.
sender.countryOfIncorporationISO 3166-1 alpha-2RequiredCountry where the business is incorporated.
sender.address.addressLineStringRequiredRegistered street address.
sender.address.cityStringRequiredRegistered city or town.
sender.address.postalCodeStringRecommendedRegistered postal or ZIP code.
sender.address.regionStringRecommendedState, province, or region.
sender.address.countryISO 3166-1 alpha-2RequiredCountry of the registered address.
sender.contact.emailEmailRequiredBusiness contact email.
sender.contact.phoneNumberInternational phone numberRequiredBusiness contact phone number.
sender.id.typeStringRequiredType of business registration or identification. Supply an accepted Axiym value or descriptive text.
sender.id.numberStringRequiredBusiness registration or identification number.
sender.id.countryISO 3166-1 alpha-2RecommendedCountry that issued the identifier.
sender.id.issueDateISO 8601 dateRecommendedDate the identifier was issued.
sender.id.expiryDateISO 8601 dateRecommendedExpiry date, when the identifier expires.
sender.ubos[]ArrayRequiredOne or more natural persons who ultimately own or control the sender.

UBO fields

Provide one entry in sender.ubos[] for each natural person who ultimately owns or controls the business.

FieldType or formatRequirednessDescription
sender.ubos[].firstNameStringRequiredUBO's given name.
sender.ubos[].lastNameStringRequiredUBO's family name.
sender.ubos[].designationControlled valueRequiredRelationship to the sender. Every entry represents a UBO; Axiym uses the final value ubo.
sender.ubos[].nationalities[]ISO 3166-1 alpha-2[]RequiredOne or more nationalities.
sender.ubos[].address.addressLineStringRequiredResidential address line.
sender.ubos[].address.cityStringRequiredResidential city or town.
sender.ubos[].address.postalCodeStringRecommendedResidential postal or ZIP code.
sender.ubos[].address.regionStringRecommendedResidential state, province, or region.
sender.ubos[].address.countryISO 3166-1 alpha-2RequiredCountry of residence.
sender.ubos[].id.typeStringRequiredType of personal identification. Supply an accepted Axiym value or descriptive text.
sender.ubos[].id.numberStringRequiredIdentification document number.
sender.ubos[].id.countryISO 3166-1 alpha-2RecommendedIssuing country.
sender.ubos[].id.issueDateISO 8601 dateRecommendedIssue date.
sender.ubos[].id.expiryDateISO 8601 dateRecommendedExpiry date.

UBO data describes ownership or control. It does not mean the owner personally owes the payment being made by the sender.

Identification types are normalized to Axiym's controlled values before validation. This applies whether the sender uses Axiym's field structure or is translated through a Party Data Map. Names, addresses, identifier numbers, and other factual values are validated but are not classified as enum values.

Example

{
  "name": "Acme Trading Pte Ltd",
  "countryOfIncorporation": "SG",
  "address": {
    "addressLine": "18 Robinson Road",
    "city": "Singapore",
    "postalCode": "048547",
    "region": "Singapore",
    "country": "SG"
  },
  "contact": {
    "email": "payments@acme.example",
    "phoneNumber": "+6561234567"
  },
  "id": {
    "type": "company registration number",
    "number": "202412345A",
    "country": "SG",
    "issueDate": "2024-03-15"
  },
  "ubos": [
    {
      "firstName": "Maya",
      "lastName": "Tan",
      "designation": "ultimate beneficial owner",
      "nationalities": ["SG"],
      "address": {
        "addressLine": "10 Anson Road",
        "city": "Singapore",
        "postalCode": "079903",
        "country": "SG"
      },
      "id": {
        "type": "passport",
        "number": "E1234567A",
        "country": "SG",
        "issueDate": "2023-01-10",
        "expiryDate": "2033-01-09"
      }
    }
  ]
}