Update Corporation Cardholder

Updates the specified corporation cardholder by setting the values of the parameters passed.

Request URI

POST /issuing/holder/update-corporation

Request Body

Refer to : common

Biz_data :

Name
Type
Description

holder_id*

long

Corporation Holder ID

contact_name*

string(100)

Contact Name

mobile*

string(16)

The whole mobile phone number.

Need to add an international area code

email*

string(80)

Email

corporation.corporation_id*

long

Corporation ID

corporation.registration_name*

string(100)

Registration Name.Format:CHARSETS_7

corporation.registration_code*

string(32)

Registration Code

corporation.registration_date*

string(20)

Registration Date.Format: yyyy-MM-dd

corporation.vat_code

string(32)

VAT Code

corporation.expires_on

string(20)

Expires On.Format: yyyy-MM-dd

corporation.business_scope

string(300)

Business Scope

corporation.registration_address.address_id*

long

Address ID

corporation.registration_address.line*

string(128)

The first line of the address.

Format:CHARSETS_4

corporation.registration_address.line2

string(128)

The second line of the address.

Format:CHARSETS_4

corporation.registration_address.postal_code*

string(4-8)

The address zip code, or postal code

corporation.registration_address.city_name*

string(4-80)

The address city.Format:CHARSETS_6

corporation.registration_address.state*

string(4-48)

The address state.Format:CHARSETS_6

corporation.registration_address.country_code*

string(2)

Country code.Refer to CountryCode

person.person_id*

long

Person ID

person.first_name*

string(50)

Director.First Name

person.last_name*

string(50)

Director.Last Name

person.middle_name

string(50)

Director.Middle Name

person.national_name

string(50)

Director.National Name

person.id_type*

integer

Director.ID Type

person.id_no*

string(6-20)

Director.ID Number

person.birthday*

string(20)

Director.Birthday

Format: yyyy-MM-dd

person.issuance_date

string(20)

Director.Issuance Date

Format: yyyy-MM-dd

person.expires_on

string(20)

Director.Expires On

Format: yyyy-MM-dd

person.citizenship_country*

string(2)

Director.Citizenship Country

person.address.address_id*

long

Address ID

person.address.line*

string(128)

Director.The first line of the address.

Format:CHARSETS_4

person.address.line2

string(128)

Director.The second line of the address.

Format:CHARSETS_4

person.address.postal_code*

string(4-8)

Director

The address zip code, or postal code

person.address.city_name*

string(4-80)

Director.The address city

Format:CHARSETS_6

person.address.state*

string(4-48)

Director.The address state

Format:CHARSETS_6

person.address.country_code*

string(2)

Director.Country code

Refer to CountryCode

Request Example

{
    "app_id": "00000000000000000",
    "partner_id": "00000000000000000",
    "sub_partner_id": "",
    "request_id": "CC9A9cE2-57E7-fF1b-d5E0-2fC96A02",
    "timestamp": "2025-04-07 13:52:21",
    "format": "JSON",
    "version": "2.0",
    "sign_type": "RSA",
    "biz_data": {
        "holder_id": 103007,
        "mobile": "+8613325862723",
        "email": "q.ltzolmd@bfmy.us",
        "contact_name": "Api Smoke Ceshyjb",
        "corporation": {
            "corporation_id": 100817,
            "registration_name": "API SMOKE PENGUIN INC CHANGED",
            "registration_code": "64000019850408614X",
            "registration_date": "2012-12-10",
            "vat_code": "vatcode12",
            "expires_on": "2032-12-10",
            "business_scope": "automation test records",
            "registration_address": {
                "address_id": 104344,
                "city_name": "Vedachester",
                "country_code": "MX",
                "postal_code": "78995-04",
                "state": "Utah",
                "line": "3052 Braun Lakes",
                "line2": "Suite 675"
            }
        },
        "person": {
            "person_id": 103260,
            "first_name": "Api Smoke",
            "last_name": "Ceezfgw",
            "citizenship_country": "MX",
            "id_type": 2,
            "id_no": "460000197404194137",
            "gender": 2,
            "birthday": "2021-12-09",
            "national_name": "rpc",
            "issuance_date": "2012-12-10",
            "expires_on": "2032-12-10",
            "address": {
                "address_id": 104343,
                "city_name": "Alexandraburgh",
                "country_code": "NP",
                "postal_code": "21154",
                "state": "Wyoming",
                "line": "46467 Kamron Tunnel",
                "line2": "Apt. 886"
            }
        }
    },
    "random_key": "<generated_key>"
}
// The biz_data in this example needs to be encrypted!

Response

{
    "code": "10000",
    "msg": "Success"
}

Last updated

Was this helpful?