2.1.40 Billing Address Query
Path:/openapi/card/billing/address/query
Method:POST
Content-Type:application/json
Response Content-Type:application/json
Description:
Example Request:
{
"card_id": "00003454323400000028888"
}
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. |
API Response:
| Parameter Name | Type | Description |
|---|---|---|
| code | string | Error code |
| msg | string | Error message |
| data | Card information | Data response |
| card_id | string | Card ID: Id of the card. |
| country_id | integer | Country ID,Refer to the appendix【3.2 Mobile Phone Area Code and Country Code】-【Unique ID】for the range of values |
| state | string | State |
| city | string | City |
| address | string | Mailing address |
| zip_code | string | Postal Code |
| first_name | string | First name |
| last_name | string | Last name |
| mobile | string | Mobile no |
| mobile_code | string | Mobile no country code |
| country_name | String | Country Name |
| string |
Example Response:
{
"code": "00000",
"msg": "ok",
"data": {
"card_id": "00003454323400000028888",
"country_id": 1,
"state": "beijing",
"city": "beijing",
"address": "maizidianjie28hao",
"zip_code": "100100",
"mobile_code": "86",
"mobile": "1140000003",
"first_name": "asdasdf",
"last_name": "Changshuai",
"country_name": "China",
"email": "billing-v10001@legend.tech"
}
}