Skip the KYC flow

For testing purposes, you can skip the identification process in Sandbox environment.
This page describes how to do that both for Trade Widget and API integration types.

🚧

Note:

This option is available only in Sandbox environment for individual user account type.

Not available for corporate account type.

Skip KYC flow on the Trade Widget

  1. Start by opening your Trade Widget
  2. Sign-up as a new user with the desired email (Burger menu ➡️ Sign-up)
  3. Choose Personal Account
  4. Provide the required information on the the Sign-up flow (does not have to be real-world info).
  5. Once you land on the Buy/Sell UI, click on the burger menu in the top-right, and select My Account
  6. Click on Verify Your Identity
  7. A window will pop-up suggesting to skip the Identification flow.
    Click on Fake Identification button and you're done.

Feel free to test it out on the sample Trade Widget below:


Skip KYC flow via API endpoints

  1. Sign-up a new end-user (trader) account
  2. Authenticate as the newly created trader account
  3. Skip the KYC process with a request to:
POST https://app-api.sandbox.coinify.com/kyc/identification-attempts

with the following request body:

{  
	"returnUrl":null,  
	"state": "approved"  
}

Here's a cURL example of the whole request:

curl --location 'https://app-api.sandbox.coinify.com/kyc/identification-attempts' \
--header 'Authorization: Bearer eyJhbGciOiJFUzI1NiIsInR5cCI6IkpXVCJ9.eyJpYXQiOjE3MzAzMTM4MzIsImV4cCI6MTczMDMxNTAzMiwidWlkIjo1ODYxNywiZXYiOnRydWUsInNjIjp7InRfMTM0NTAiOiIqIn19.QLui0IqZQeOxjd2noXWkMPfJjx3uvxYMSRWqRzDwNBhVLVzTR_pnok4hfnOLYEnEVq6zEzaYgYmGV8IyjSId9Q' \
--header 'Content-Type: application/json' \
--data '{
    "returnUrl": null, 
    "state": "approved"
}'

The created account's Identification attempt is now approved.

Language
Click Try It! to start a request and see the response here!