v1

latestOpenAPI 3.1.02026-07-226250251.5 KB
Customers

Attach Documents to Associated Party V2

Attach identifying documents and address documents for one or more associated parties of a business customer. Replaces the v1 proof_of_identity / proof_of_address structure with separate identifying_documents and address_documents arrays, allowing multiple ID documents per party.

post/v2/customers/{customer_id}/associated-parties/individual/attach

Path parameters

customer_idstring uuid required

Unique identifier for the business customer

Request body

Example request

{
  "associated_party_attachments": [
    {
      "associated_party_id": "f6b13e01-044a-4f74-a70b-d5f66b6449af",
      "identifying_documents": [
        {
          "type": "PASSPORT",
          "number": "A12345678",
          "country": "USA",
          "issue_date": "2020-01-15",
          "expiry_date": "2030-01-15",
          "files": [
            {
              "side": "FRONT",
              "uri": "/AbAcQ4hn_0652746727637.pdf"
            }
          ]
        }
      ],
      "address_documents": [
        {
          "type": "BANK_STATEMENT",
          "files": [
            {
              "uri": "/AbAcQ4hn_0652746727638.pdf"
            }
          ]
        }
      ],
      "supporting_documents": [
        {
          "type": "MILITARY_ID",
          "files": [
            {
              "uri": "/AbAcQ4hn_0652746727638.pdf"
            }
          ]
        }
      ]
    }
  ]
}

Response

Documents attached successfully

dataobject

Generic response object