curl --request POST \
--url https://sandbox-api.kotanipay.com/api/v3/api/v3/auth/human-verify \
--header 'Content-Type: application/json' \
--data '
{
"verificationToken": "encrypted_verification_token_here"
}
'{
"success": true,
"message": "Human verification successful",
"data": {
"user_id": "5f9b2c7b9c9d6b0017b4e6b1",
"session_id": "5f9b2c7b9c9d6b0017b4e6b1",
"token_id": "5f9b2c7b9c9d6b0017b4e6b1",
"token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9",
"refresh_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9"
}
}Complete human verification for magic link requests that were flagged as potentially suspicious
curl --request POST \
--url https://sandbox-api.kotanipay.com/api/v3/api/v3/auth/human-verify \
--header 'Content-Type: application/json' \
--data '
{
"verificationToken": "encrypted_verification_token_here"
}
'{
"success": true,
"message": "Human verification successful",
"data": {
"user_id": "5f9b2c7b9c9d6b0017b4e6b1",
"session_id": "5f9b2c7b9c9d6b0017b4e6b1",
"token_id": "5f9b2c7b9c9d6b0017b4e6b1",
"token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9",
"refresh_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9"
}
}