curl --request GET \
--url https://nextvisit.app/api/v1/progress-notes \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": 123,
"name": "Follow-up Visit - Jane Doe",
"team_id": 5,
"user_id": 42,
"created_at": "2023-04-10T15:30:00Z",
"updated_at": "2023-04-10T15:45:00Z",
"transcription": "Patient reports improvement in symptoms since last visit...",
"analysis": "Patient's condition has improved with current treatment regimen...",
"template": {
"id": 5,
"name": "Standard Follow-up",
"description": "Standard template for routine follow-up visits"
},
"patient": {
"$ref": "<unknown>"
},
"audio": {
"duration": 480,
"bitrate": 128000,
"size": 7680000,
"uploaded_at": "2023-04-10T15:30:00Z",
"expires_at": "2023-05-10T15:30:00Z",
"file_url": "https://storage.nextvisit.app/encounters/abc123.mp3?token=xyz"
},
"has": {
"content": true,
"transcription": true,
"signed": false
},
"user": {
"$ref": "<unknown>"
},
"transcription_started_at": "2023-04-10T15:35:00Z",
"transcription_completed_at": "2023-04-10T15:40:00Z",
"analysis_started_at": "2023-04-10T15:40:00Z",
"analysis_completed_at": "2023-04-10T15:45:00Z",
"error_state": null
}
],
"links": {},
"meta": {}
}Returns a paginated list of progress notes with optional filtering
curl --request GET \
--url https://nextvisit.app/api/v1/progress-notes \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": 123,
"name": "Follow-up Visit - Jane Doe",
"team_id": 5,
"user_id": 42,
"created_at": "2023-04-10T15:30:00Z",
"updated_at": "2023-04-10T15:45:00Z",
"transcription": "Patient reports improvement in symptoms since last visit...",
"analysis": "Patient's condition has improved with current treatment regimen...",
"template": {
"id": 5,
"name": "Standard Follow-up",
"description": "Standard template for routine follow-up visits"
},
"patient": {
"$ref": "<unknown>"
},
"audio": {
"duration": 480,
"bitrate": 128000,
"size": 7680000,
"uploaded_at": "2023-04-10T15:30:00Z",
"expires_at": "2023-05-10T15:30:00Z",
"file_url": "https://storage.nextvisit.app/encounters/abc123.mp3?token=xyz"
},
"has": {
"content": true,
"transcription": true,
"signed": false
},
"user": {
"$ref": "<unknown>"
},
"transcription_started_at": "2023-04-10T15:35:00Z",
"transcription_completed_at": "2023-04-10T15:40:00Z",
"analysis_started_at": "2023-04-10T15:40:00Z",
"analysis_completed_at": "2023-04-10T15:45:00Z",
"error_state": null
}
],
"links": {},
"meta": {}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Filter notes by patient ID
Number of items per page (1-100)
1 <= x <= 100Sort order for results
latest, oldest List of progress notes
Show child attributes
Unique identifier for the progress note
123
Name or title of the progress note
"Follow-up Visit - Jane Doe"
ID of the team this note belongs to
5
ID of the user who created this note
42
When the progress note was created
"2023-04-10T15:30:00Z"
When the progress note was last updated
"2023-04-10T15:45:00Z"
Transcribed content of the audio recording
"Patient reports improvement in symptoms since last visit..."
AI-generated analysis of the transcription
"Patient's condition has improved with current treatment regimen..."
Show child attributes
Duration of the audio in seconds
480
Bitrate of the audio file
128000
Size of the audio file in bytes
7680000
When the audio was uploaded
"2023-04-10T15:30:00Z"
When the audio file will expire
"2023-05-10T15:30:00Z"
Temporary URL to access the audio file
"https://storage.nextvisit.app/encounters/abc123.mp3?token=xyz"
When transcription process started
"2023-04-10T15:35:00Z"
When transcription was completed
"2023-04-10T15:40:00Z"
When analysis process started
"2023-04-10T15:40:00Z"
When analysis was completed
"2023-04-10T15:45:00Z"
Any error state during processing
null
Pagination links
Pagination metadata
Was this page helpful?