Skip to main content
POST
/
ppi
/
kyc
/
min
Min KYC Verification
curl --request POST \
  --url https://api.cashfree.com/ppi/kyc/min \
  --header 'Content-Type: application/json' \
  --header 'x-api-version: <x-api-version>' \
  --header 'x-client-id: <api-key>' \
  --header 'x-client-secret: <api-key>' \
  --data '
{
  "otp_verification_id": "Test123",
  "user_id": "USER827364",
  "verification_id": "TestVerification",
  "document": {
    "type": "PAN",
    "identifier": "ABCDE1234F",
    "name": "SHAH RAMESH",
    "dob": "1990-05-12"
  }
}
'
{
"verification_id": "TestVerification",
"cf_verification_id": "8901234567890123452",
"otp_verification_id": "Test123",
"status": "VERIFIED",
"user_id": "USER827364"
}

Authorizations

x-client-id
string
header
required

Your unique client identifier issued by Cashfree.

x-client-secret
string
header
required

The secret key associated with your client ID.

Headers

x-api-version
string
default:2025-11-01
required

API version to be used. Format is in YYYY-MM-DD.

Example:

"2025-11-01"

Body

application/json
otp_verification_id
string
required

Unique identifier for the OTP verification request that was previously verified.

Required string length: 1 - 50
Example:

"Test123"

user_id
string
required

Unique identifier for the user, as provided by you during PPI user creation.

Required string length: 1 - 50
Example:

"USER827364"

verification_id
string
required

Unique identifier that you create to identify the KYC verification request in your system. Maximum 50 characters. Only alphanumeric characters, periods (.), hyphens (-), and underscores (_) are allowed.

Required string length: 1 - 50
Example:

"TestVerification"

document
object
required

Document information for KYC verification.

Response

Minimum KYC verification completed successfully.

verification_id
string

Unique identifier for the KYC verification request, as provided by you during the request.

Example:

"TestVerification"

cf_verification_id
string

Unique identifier for the KYC verification request, generated by Cashfree.

Example:

"8901234567890123452"

otp_verification_id
string

Unique identifier for the OTP verification request that was used in this KYC verification.

Example:

"Test123"

status
enum<string>

Status of the KYC verification process.

Available options:
VERIFIED,
FAILED
Example:

"VERIFIED"

user_id
string

Unique identifier for the user, as provided by you during PPI user creation.

Example:

"USER827364"