Update KYC Address Proof

This API is used to update KYC address proof details after submission

  • Path: /api/v1/account/updateAddressProof

  • Method: POST

  • Content-Type

    application/json

  • Headers

Key
Type
Required
Comments

authorization

string

YES

Authorization Header

  • Body

Key
Type
Required
Comments

api_key

string

YES

api key

request_id

string

YES

Unique id; the shortest is 20 characters, the longest is 64 characters

timestamp

string

YES

13-digit; Valid for plus or minus 30

username

string

YES

Unique username of the account.

address_type

string

YES

Allowed type of address proof document: Credit Card Statement、Utility Bill、Bank Statement、Bank Letter、Insurance Policy、Post Office Balance Certificate、Other Government Issued Document

address_issued_by

string

YES

Issuing authority name, such as the name of the utility company or bank.

address_issued_date

string

YES

The date stamp on the document when it was issued. May not be more than 90 days old. Format: YYYY-DD-MM

address_language

string

YES

Language of the submitted document: English、Spanish、 French、Arabic、Chinese、Japanese、Russian、Portuguese、 German、Italian、Hindi、Other

address_proof_front

string

YES

Base64 encoded document data.

address_proof_front_extension

string

YES

File extension

address_proof_back

string

Optional

Base64 encoded document data.

address_proof_back_extension

string

Required if address_proof_back is set

File extension

sign

string

YES

sign: MD5(api_key+username+timestamp+secret+request_id)lowercase hex

  • Example

    {
      api_key: 'fd01a53d7834b06c080cd1024ae9c60a',
      request_id: '45242f41f20b456092d1b48caa76ce13',
      timestamp: '1682073075988',
      username: 'lili111',
      address_type: 'Utility Bill',
      address_issued_by: 'aaa',
      address_issued_date: '2023-04-04',
      address_language: 'English',
      address_proof_front: "xxx",
      address_proof_front_extension: 'jpeg',
      address_proof_back: "xxx",
      address_proof_back_extension: 'jpeg',
      sign: 'aeb294ad0e59e34dfae4885b26b848ee'
    }

    signature example:MD5(fd01a53d7834b06c080cd1024ae9c60alili111168207307598816388ce4331b35e8e0d32777ba57d7d945242f41f20b456092d1b48caa76ce13)

  • Response

Key
Type
Comments

code

number

Response code

msg

string

Response message

  • Example

    {
      "code": 10200,
      "msg": "ok"
    }

Last updated