Saltar al contenido principal
GET
/
v1
/
scribe-sessions
/
{id}
Consultar sesión de Scribe
curl --request GET \
  --url https://synapse.telepatia.ai/v1/scribe-sessions/{id} \
  --header 'Authorization: Bearer <token>'
{
  "completedAt": "2026-02-20T10:30:00Z",
  "consultationInternalId": "EMR-CONSULT-12345",
  "createdAt": "2026-02-20T10:00:00Z",
  "id": "session-abc-123",
  "medicalRecordMutable": {
    "chiefComplaint": {
      "content": "Patient reports headache",
      "status": "completed",
      "title": "Chief Complaint",
      "type": "text"
    }
  },
  "patientName": "John Doe",
  "scribeSessionModality": "IN_PERSON",
  "specialty": "Cardiology",
  "status": "completed"
}

Autorizaciones

Authorization
string
header
requerido

Clave API enviada como token Bearer

Parámetros de ruta

id
string
requerido

El ID interno de la consulta a buscar

Required string length: 1 - 128
Pattern: ^[a-zA-Z0-9_-]+$
Ejemplo:

"EMR-CONSULT-12345"

Respuesta

Respuesta exitosa

Cuerpo de respuesta para la consulta de sesión de scribe.

id
string
requerido
Maximum string length: 255
Ejemplo:

"session-abc-123"

status
string
requerido
Maximum string length: 255
Ejemplo:

"completed"

createdAt
string<date-time> | null
Ejemplo:

"2026-02-20T10:00:00Z"

completedAt
string<date-time> | null
Ejemplo:

"2026-02-20T10:30:00Z"

patientName
string | null
Maximum string length: 255
Ejemplo:

"John Doe"

scribeSessionModality
string | null

The modality of the scribe session (e.g. 'IN_PERSON', 'TELEMEDICINE').

Ejemplo:

"IN_PERSON"

consultationInternalId
string | null

The consultation ID provided by the API consumer.

Ejemplo:

"EMR-CONSULT-12345"

specialty
string | null

The medical specialty of the clinician who conducted the session.

Ejemplo:

"Cardiology"

medicalRecordMutable
Medicalrecordmutable · object

The doctor-editable medical record. Each key is a section (e.g. 'chiefComplaint', 'vitalSigns') containing title, type, status, and content.