Update the Entity

The Entity of the business.

Note: As of September 2021, our documentation refers to the new MXC boarding APIs. If you would like to review documentation referencing our old boarding APIs, please change the page version from v2 to v1 at the top left corner

One of the parts that are needed to board a merchant into MX™ Connect is the account body. Below is an of the JSON body. The endpoint to update the endpoint:

{
        "domain": {
            "id": "00000000-0000-0000-0000-000000000001"
        },
        "platform": "vortex",
        "research": {
            "bankruptcy": false
        },
        "jurisdiction": {
            "established": "2002-02-02",
            "country": "United States",
            "kind": "Individual or Sole Proprietor",
            "state": "GA",
            "name": "RiverLegal"
        },
        "address": {
            "postalCode": "30350",
            "city": "Sandy Springs",
            "country": "United States",
            "state": "GA",
            "street1": "223 February Street"
        },
        "taxId": {
            "number": "333333333",
            "valid": false,
            "type": "SSN"
        },
        "email": "[email protected]",
        "signers": [
            {
                "secondaryIdentification": {
                    "taxIdNumber": "333333333",
                    "taxType": "Passport",
                    "countryOfIssuance": "US"
                },
                "taxType2": "Passport",
                "phone": "3143433433",
                "primary": true,
                "firstName": "API Test",
                "email": "[email protected]",
                "primaryIdentification": {
                    "taxIdNumber": "333333333",
                    "taxType": "SSN",
                    "countryOfIssuance": "US"
                },
                "taxType": "SSN",
                "lastName": "Cha",
                "dob": "2002-02-02",
                "address": {
                    "postalCode": "30350",
                    "city": "Sandy Springs",
                    "country": "United States",
                    "state": "GA",
                    "street1": "223 February Street"
                },
                "title": "CEO",
                "unitedStatesCitizen": true,
                "ownership": 100,
                "id": "1"
            }
        ]
    }