Adyen · Schema

UltimateParentCompany

UltimateParentCompany schema from Adyen API

PaymentsFinancial-ServicesFintech

Properties

Name Type Description
address object Address of the ultimate parent company.
businessDetails object Details about the ultimate parent company's business.
ultimateParentCompanyCode string Adyen-generated unique alphanumeric identifier (UUID) for the entry, returned in the response when you create an ultimate parent company. Required when updating an existing entry in an `/updateAccount
View JSON Schema on GitHub

JSON Schema

accounts-ultimate-parent-company-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/accounts-ultimate-parent-company-schema.json",
  "title": "UltimateParentCompany",
  "description": "UltimateParentCompany schema from Adyen API",
  "type": "object",
  "properties": {
    "address": {
      "description": "Address of the ultimate parent company.",
      "$ref": "#/components/schemas/ViasAddress"
    },
    "businessDetails": {
      "description": "Details about the ultimate parent company's business.",
      "$ref": "#/components/schemas/UltimateParentCompanyBusinessDetails"
    },
    "ultimateParentCompanyCode": {
      "description": "Adyen-generated unique alphanumeric identifier (UUID) for the entry, returned in the response when you create an ultimate parent company. Required when updating an existing entry in an `/updateAccountHolder` request.",
      "type": "string"
    }
  }
}