Skip to main content
POST
/
api
/
v3
/
auth
/
human-verify
Human verification for suspicious requests
curl --request POST \
  --url https://preview.kotanipay.com/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"
  }
}

Documentation Index

Fetch the complete documentation index at: https://manual.kotanipay.com/llms.txt

Use this file to discover all available pages before exploring further.

Complete human verification for magic link requests that were flagged as potentially suspicious to ensure account security.

Body

application/json
verificationToken
string
required

Verification token from previous response

Example:

"encrypted_verification_token_here"

Response

success
boolean
Example:

true

message
string
Example:

"Human verification successful"

data
object