Kyc Status Notification

This API is used to notify account new kyc status if kyc status change.

  • URL (Set in the management system)

  • 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 member.

kyc_status

number

YES

1 Submitted pending review; 2 ⁠Full review successful; 3 Pending user resubmission; 4 ⁠KYC rejected

kyc_reject_reason

string

YES

kyc fail reason

sign

string

YES

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

  • Example

    {
      api_key: 'fd01a53d7834b06c080cd1024ae9c60a',
      request_id: '0f817ab66154454fadeea20ae2bfecc2',
      timestamp: '1682075328711',
      username: 'lili111',
      kyc_status: 2,
      kyc_reject_reason: "",
      sign: '786b0623ead8c40049265e03497af503'
    }

    signature example:MD5(fd01a53d7834b06c080cd1024ae9c60a168207532871116388ce4331b35e8e0d32777ba57d7d90f817ab66154454fadeea20ae2bfecc2)

  • Response

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

Last updated