Skip to main content
GET
/
v1
/
progress-notes
List progress notes
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": {}
}

Authorizations

Authorization
string
header
required

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

Query Parameters

patient_id
integer

Filter notes by patient ID

per_page
integer
default:15

Number of items per page (1-100)

Required range: 1 <= x <= 100
sort_by
enum<string>
default:latest

Sort order for results

Available options:
latest,
oldest

Response

List of progress notes

data
object[]

Pagination links

meta
object

Pagination metadata