GET
/
user
/
profile
cURL
curl --request GET \
  --url https://api.nh.staging.mum.juspay.net/service2/user/profile \
  --header 'Authorization: Bearer <token>'
{
  "phone": "<string>",
  "profile_complete": true,
  "user_id": "<string>",
  "aadhaar_last4": "<string>",
  "address": "<string>",
  "dob": "<string>",
  "email": "<string>",
  "employer": "<string>",
  "first_name": "<string>",
  "gender": "male",
  "last_name": "<string>",
  "occupation": "salaried"
}

Authorizations

Authorization
string
header
required

JWT access token. Obtain from /auth/otp/verify endpoint.

Response

Current user's profile

Response body for GET /user/profile.

phone
string
required
profile_complete
boolean
required

true when both first_name and last_name are present.

user_id
string
required
aadhaar_last4
string | null

Aadhaar last-4 masked as "XXXXXXXX{last4}", e.g. "XXXXXXXX1234".

address
string | null
dob
string | null

Date of birth as "YYYY-MM-DD" string, if set.

email
string | null
employer
string | null
first_name
string | null
gender
string | null

One of: "male", "female", "other".

Example:

"male"

last_name
string | null
occupation
string | null

One of: "salaried", "self_employed", "professional", "student", "homemaker", "retired", "other".

Example:

"salaried"