2.1.3 Activation
This API is use for the card activation that require attachment.
Path:/openapi/card/active
Method:POST
Content-Type:application/json
Response Content-Type:application/json
Description:
Note: This API should only be called when the activate_type is 1.
Example Request:
{
"card_id": "00003454323400000028888",
"file": ""
}
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. |
| file | string | true | Document for card activation: Photo for user with holding the passport and the card. Encoded into base64 format. The size of this field should be less than 2 MB. |
API Response:
| Parameter Name | Type | Description |
|---|---|---|
| code | string | Error code |
| msg | string | Error message |
Example Response:
{
"code": "00000",
"msg": "ok"
}