Skip to main content
GET
/
ppi
/
user
Get PPI User Details
curl --request GET \
  --url https://api.cashfree.com/ppi/user \
  --header 'x-client-id: <api-key>' \
  --header 'x-client-secret: <api-key>'
{
"user_id": "7234567890123456789",
"first_name": "John",
"last_name": "Doe",
"phone": "+919876543210",
"email": "john.doe@example.com",
"address": {
"address": "123 Main St",
"city": "Bangalore",
"state": "Karnataka",
"country": "India",
"pincode": "560001"
},
"status": "ACTIVE"
}

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.

Query Parameters

user_id
string
required

Unique identifier of the user whose details are being requested.

Example:

"7234567890123456789"

Response

User created successfully.

user_id
string

Unique identifier for the user.

Example:

"1234567890123456789"

first_name
string

First name of the user.

Example:

"John"

last_name
string

Last name of the user.

Example:

"Doe"

phone
string

Phone number of the user with country code.

Example:

"+919876543210"

email
string

Email address of the user.

Example:

"john.doe@example.com"

address
object
status
enum<string>

Current status of the user account.

Available options:
ACTIVE,
INACTIVE,
SUSPENDED,
BLOCKED
I