How to Complete KYC in a Testnet
We’ve implemented a simple KYC emulation process for testnet environments. Just send a UUID, and you’ll receive either approval or rejection with a 50% probability
.
Before using the API, you must first submit a KYC request to the contract. See the documentation here.
Call the method createKYCRequest(uint _level, bytes32 _data)
Use sha256(uuid)
as the _data
parameter.
This API is designed to simplify the process of emulating KYC in a testnet environment, allowing developers to efficiently test workflows that depend on KYC outcomes.
The 50% approval/rejection mechanism is designed for test purposes only. No actual KYC verification is performed.
Endpoint:
POST https://test.kyc.atgraphite.com/api/kyc/process-request
Request:
{
"data": "uuid"
}
Test your KYC workflows easily with this tool.
Last updated