Skip to main content
GET
/
v1
/
progress-notes
/
{id}
/
audio-url
Get audio file URL
curl --request GET \
  --url https://nextvisit.app/api/v1/progress-notes/{id}/audio-url \
  --header 'Authorization: Bearer <token>'
{
  "url": "https://storage.nextvisit.app/encounters/abc123.mp3?token=xyz"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
integer
required

Progress note unique identifier

Response

Audio URL generated successfully

url
string

Temporary URL to access the audio file

Example:

"https://storage.nextvisit.app/encounters/abc123.mp3?token=xyz"