GET
/
profiles
/
v1
/
patient
/
minified
/
curl --request GET \
  --url https://api.eka.care/profiles/v1/patient/minified/ \
  --header 'Authorization: Bearer <token>' \
  --header 'client-id: <client-id>'
{
  "profiles": [
    {
      "mobile": "1212121212",
      "fln": "Test user",
      "u_ate": 1750918049,
      "c_ate": 1750918049,
      "arc": false,
      "dob": "2000-01-02",
      "gen": "M",
      "oid": "175074536120088",
      "wid": "77088111111111"
    }
  ],
  "currPageMeta": {
    "currPageNo": 1,
    "pageSize": 10,
    "nextPage": 2
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

client-id
string
required
Example:

"EC_1431"

Query Parameters

pageNo
integer
Example:

1

pageSize
integer
Example:

100

select
string

Comma-separated list of fields to include in the response. Example: wid,oid Valid fields: mobile, fln, u_ate, c_ate, arc, dob, gen, oid, wid

Response

200
application/json

A list of patient profiles

The response is of type object.