Request
Body Params application/json
{
"request_id": "",
"billing_address": "1600 Amphitheatre Parkway",
"billing_city": "New York",
"billing_postal": "94043",
"billing_state": "NY",
"birth_date": "1996-07-02",
"billing_country": "US",
"email": "test1811@email.com",
"first_name": "Jon",
"last_name": "Doe",
"mobile": "9521325",
"mobile_prefix": "+1",
"remark": "test",
"company_id": "4101",
"sign": "14DC174549C80FF4C62113CB7A08BF03846DED0D37F7985E6C5CAD845C823861"
}
Request samples
curl --location --request POST 'https://sandbox.vcc.top/api/cardholder/create' \
--header 'Content-Type: application/json' \
--data-raw '{
"request_id": "",
"billing_address": "1600 Amphitheatre Parkway",
"billing_city": "New York",
"billing_postal": "94043",
"billing_state": "NY",
"birth_date": "1996-07-02",
"billing_country": "US",
"email": "test1811@email.com",
"first_name": "Jon",
"last_name": "Doe",
"mobile": "9521325",
"mobile_prefix": "+1",
"remark": "test",
"company_id": "4101",
"sign": "14DC174549C80FF4C62113CB7A08BF03846DED0D37F7985E6C5CAD845C823861"
}'
Responses
application/json {
"code": 0,
"msg": {
"zh-CN": "成功",
"en-US": "Success"
},
"data": {
"billingAddress": "1600 Amphitheatre Parkway",
"billingCity": "New York",
"billingPostal": "94043",
"billingState": "NY",
"birthDate": "1996-07-02 08:00:00",
"companyId": 4101,
"countryCode": "US",
"email": "test1811@email.com",
"firstName": "Jon",
"lastName": "Doe",
"mobile": "9521325",
"mobilePrefix": "+1",
"remark": "test",
"cardholderId": 8101,
"isStatus": "1",
"status": "1"
}
}
Modified at 2024-11-15 07:35:50