Skip to main content
GET
/
v1
/
institutional
/
accounts
/
{account_id}
Get a doctor account
curl --request GET \
  --url https://synapse.telepatia.ai/v1/institutional/accounts/{account_id} \
  --header 'Authorization: Bearer <token>'
{
  "createdAt": "2024-01-15T10:30:00Z",
  "doctorSpecialties": [
    "CARDIOLOGY"
  ],
  "email": "dr.juan@clinica.com",
  "enabled": true,
  "id": "acc_a1b2c3d4e5f6g7h8",
  "internalCode": "DOC-001",
  "nameFull": "Dr. Juan Pérez"
}

Authorizations

Authorization
string
header
required

API key passed as a Bearer token

Path Parameters

account_id
string
required

Response

Successful Response

Response body for fetching an institutional doctor account.

id
string
required

Account publicId (acc_*).

Example:

"acc_a1b2c3d4e5f6g7h8"

email
string
required
Example:

"dr.juan@clinica.com"

doctorSpecialties
string[]
required
Example:
["CARDIOLOGY"]
enabled
boolean
required
Example:

true

createdAt
string
required
Example:

"2024-01-15T10:30:00Z"

nameFull
string | null
Example:

"Dr. Juan Pérez"

internalCode
string | null
Example:

"DOC-001"