PATCH
/
abdm
/
v1
/
profile
curl --request PATCH \
  --url https://api.eka.care/abdm/v1/profile \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "address": "123, ABC Street",
  "day_of_birth": 1,
  "first_name": "Shyam",
  "gender": "M",
  "last_name": "Singh",
  "middle_name": "Kumar",
  "month_of_birth": 1,
  "pincode": "110001",
  "year_of_birth": 1990
}'
This response has no body data.

Authorizations

Authorization
string
header
required

The API requires a Bearer token (JWT) for authentication.

Body

application/json
day_of_birth
integer
required

Day of birth of the user.

first_name
string
required

First name of the user.

gender
enum<string>
required

Gender of the user ('M' for male, 'F' for female, 'O' for other).

Available options:
M,
F,
O
month_of_birth
integer
required

Month of birth of the user.

pincode
string
required

Pincode of the user's address.

year_of_birth
integer
required

Year of birth of the user.

address
string | null

Address of the user.

last_name
string | null

Last name of the user.

middle_name
string | null

Middle name of the user.