Axiym
Implementation guidesPrepare payment data

Sender and related individuals

View Markdown

The sender object identifies the business making the payment: your organization or a client you are paying for. It contains the business's identity, address, contact, and registration details, with related individuals in relationships and the documents that evidence them.

Omit sender when you pay for yourself. The account holder is then the sender and its onboarded profile is used; the fields below apply when you pay on behalf of a client.

Addresses are structured following ISO 20022. streetName is the primary address line, not literally a street name: it can carry the full street address and number, a PO box, or a building or lot description. Use the value that identifies the location; do not use placeholder values.

Sender fields

FieldType or formatRequirednessDescription
sender.nameStringRequiredRegistered legal business name.
sender.countryOfIncorporationISO 3166-1 alpha-2RequiredCountry where the business is incorporated.
sender.address.streetNameStringRequiredPrimary address line: street and number, PO box, or building or lot description.
sender.address.buildingNumberStringOptionalBuilding number, when held separately.
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.identification.typeStringRequiredType of business registration or identification. Use an exact Axiym code; other labels need a saved value translation on the mapped endpoint.
sender.identification.numberStringRequiredBusiness registration or identification number.
sender.identification.countryISO 3166-1 alpha-2RecommendedCountry that issued the identifier.
sender.identification.issueDateISO 8601 dateRecommendedDate the identifier was issued.
sender.identification.expiryDateISO 8601 dateRecommendedExpiry date, when the identifier expires.
sender.identification.documents[]SupportingDocumentInput[]ConditionalDocuments evidencing the registration, such as a registry extract. Required where the corridor requires identity evidence.
sender.documents[]SupportingDocumentInput[]ConditionalDocuments about the business that do not evidence a specific identification, such as a proof of address.
sender.relationships[]ArrayRequiredOne or more natural persons related to the sender, each with a role.

Relationship fields

Use sender.relationships[] for the related individuals required for the payment, with one entry per person and their role. Each entry represents a natural person, not a company in an ownership chain. Apply the baseline and corridor requirements when deciding which individuals to include.

FieldType or formatRequirednessDescription
sender.relationships[].firstNameStringRequiredGiven name.
sender.relationships[].lastNameStringRequiredFamily name.
sender.relationships[].roleAxiym enumRequiredIndividual's role. Use an exact Axiym code; other labels need a saved value translation on the mapped endpoint. See Controlled values.
sender.relationships[].nationalities[]ISO 3166-1 alpha-2[]RequiredOne or more nationalities.
sender.relationships[].address.streetNameStringRequiredPrimary residential-address line: street and number, PO box, or building or lot description.
sender.relationships[].address.buildingNumberStringOptionalBuilding number, when held separately.
sender.relationships[].address.cityStringRequiredResidential city or town.
sender.relationships[].address.postalCodeStringRecommendedResidential postal or ZIP code.
sender.relationships[].address.regionStringRecommendedResidential state, province, or region.
sender.relationships[].address.countryISO 3166-1 alpha-2RequiredCountry of residence.
sender.relationships[].identification.typeStringRequiredType of personal identification. Use an exact Axiym code; other labels need a saved value translation on the mapped endpoint.
sender.relationships[].identification.numberStringRequiredIdentification document number.
sender.relationships[].identification.countryISO 3166-1 alpha-2RecommendedIssuing country.
sender.relationships[].identification.issueDateISO 8601 dateRecommendedIssue date.
sender.relationships[].identification.expiryDateISO 8601 dateRecommendedExpiry date.
sender.relationships[].identification.documents[]SupportingDocumentInput[]ConditionalDocuments evidencing the individual's identification, such as a passport scan, where the corridor requires them.

Direct requests require exact identification type and relationship role codes. The mapped endpoint also accepts labels covered by saved value translations. Names, addresses, identifier numbers, and other factual values are validated but are not classified as controlled values.

Example

{
  "name": "Acme Trading Pte Ltd",
  "countryOfIncorporation": "SG",
  "address": {
    "streetName": "Robinson Road",
    "buildingNumber": "18",
    "city": "Singapore",
    "postalCode": "048547",
    "region": "Singapore",
    "country": "SG"
  },
  "contact": {
    "email": "payments@acme.example",
    "phoneNumber": "+6561234567"
  },
  "identification": {
    "type": "REGISTRATION_NUMBER",
    "number": "202412345A",
    "country": "SG",
    "issueDate": "2024-03-15",
    "documents": [
      {
        "documentType": "REGISTRY_EXTRACT",
        "name": "acme-registry-extract.pdf",
        "data": "REPLACE_WITH_BASE64_ENCODED_REGISTRY_EXTRACT"
      }
    ]
  },
  "relationships": [
    {
      "role": "UBO",
      "firstName": "Maya",
      "lastName": "Tan",
      "nationalities": ["SG"],
      "address": {
        "streetName": "Anson Road",
        "buildingNumber": "10",
        "city": "Singapore",
        "postalCode": "079903",
        "country": "SG"
      },
      "identification": {
        "type": "PASSPORT",
        "number": "E7654321B",
        "country": "SG",
        "issueDate": "2023-01-10",
        "expiryDate": "2033-01-09"
      }
    }
  ]
}