Get KYC Address Proof Status

This API is used to get the KYC address status of the account.

  • Path: /api/v1/account/getAddressKycStatus

  • 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 seconds

username

string

YES

Unique username of the account.

sign

string

YES

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

  • Example

    {
      api_key: 'fd01a53d7834b06c080cd1024ae9c60a',
      request_id: '48dde322bf7a4ea7bf928a2996744840',
      timestamp: '1682074028258',
      username: 'lili111',
      sign: '400407149060322023134bb9070274ef'
    }

    signature example:MD5(fd01a53d7834b06c080cd1024ae9c60alili111168207402825816388ce4331b35e8e0d32777ba57d7d948dde322bf7a4ea7bf928a2996744840)

  • Response

Key
Type
Comments

code

number

Response code

msg

string

Response message

data

object

details

Key
Type
Comments

status

number

Account's address kyc status. 0 Not submitted; 1 Submitted pending review; 2 ⁠Full review successful; 3 Pending user resubmission; 4 ⁠KYC rejected

  • Example

    {
      "code": 10200,
      "msg": "ok"
      "data": {
        "status": 2
      }
    }

Last updated