2.1.41 Billing Address Change
Path:/openapi/card/billing/address/change
Method:POST
Content-Type:application/json
Response Content-Type:application/json
Description:
Example Request:
{
"card_id": "6265607910000047280",
"country_id": 1,
"state": "beijing",
"city": "beijing",
"address": "maizidianjie28hao",
"zip_code": "8888888",
"mobile_code": "86",
"mobile": "1140000003"
}
Request Parameter:
Parameter Name | Type | Required | Description |
---|---|---|---|
card_id | string | true | Card ID: Id of the card, will return with the Inquiry Card Application Result API (/openapi/card/apply/result) once approved. |
country_id | integer | true | Country ID,If Retrive merchant card list response kyc_country_limit column is not empty, Then the value of this field must be within the kyc_country_limit field range |
state | string | true | State;Maximum 100 characters; If Country corresponding province information has the province information corresponding to the passed country_id field, so the value of this field must be in the configured province range |
city | string | true | City;Maximum 100 characters |
address | string | true | Mailing address,Card will sending to this address;Maximum 256 characters; By default, the regular expression must be met:323_address_regex's Default regex . If card_type_id is in the range [71000003,71000002], the regular expression must be met: 323_address_regex's 71000003,71000002 regex |
zip_code | string | true | Postal Code;Maximum 20 characters Same set as mobile no country code |
mobile | string | true | Mobile no;Minimum 6 characters and Maximum 11 characters |
mobile_code | string | true | Mobile no country code;Maximum 5 characters |
API Response:
Parameter Name | Type | Description |
---|---|---|
code | string | Error code |
msg | string | Error message |
Example Response:
{
"code": "00000",
"msg": "ok"
}