There are two ways you can Sign-up a new trader account and skip the KYC process in the Sandbox environment. First one includes using the Trade Widget and the second one includes using API endpoints.
(Note: if you already created the trader’s account, then you can skip the Sign-up part of the flow)
1. Here are the steps for how to do this via Trade Widget:
- Start by following this link:
https://trade-ui.sandbox.coinify.com/widget?partnerId={YourPartnerIDHere}
and Sign up/Log in with the relevant email. Choose Personal Account, assuming that is what you want to create and test - Select residence country, check the box for Terms & Conditions and click on Verify email
- Input the code you receive on the email you signed-up with
- In the Trade Widget Menu (top right), click on My Account and select Verify Your Identity
- Check the privacy and terms box and click Continue
- Fill out the address data and continue
- Fill out the volume, source of funds and PEP boxes, and click on the confirmation box
- Lastly, click on the
Skip Identification
button
This profile is now KYC approved.
2. Here's how to do it via API (with links to documentation behind each API request):
- signup a new trader:
POST https://app-api.sandbox.coinify.com/signup/trader
(documentation: https://developer.coinify.com/apidoc/trade/#signup) - Authenticate as the newly created trader account:
POST https://app-api.sandbox.coinify.com/auth
(documentation: https://developer.coinify.com/apidoc/trade/#authentication ) - Skip the KYC process with a request to
POST https://app-api.sandbox.coinify.com/kyc/identification-attempts
and the payload should be the following:
(documentation: https://developer.coinify.com/apidoc/trade/#trader-identification)
{
"returnUrl":null,
"state": "approved"
}
You are now KYC approved with this account.