Skip to main content
List episode documents
curl --request GET \
  --url https://{tenantId}.api.nestmed.com/api/v1/episodes/{episodeId}/documents \
  --header 'Authorization: Bearer <token>'
{
  "documents": [
    {
      "documentId": "<string>",
      "episodeId": "<string>",
      "documentType": "<string>",
      "title": "<string>",
      "fileName": "<string>",
      "fileSize": 123,
      "mimeType": "<string>",
      "status": "<string>",
      "uploadedAt": "2023-11-07T05:31:56Z"
    }
  ],
  "totalCount": 123
}

Authorizations

Authorization
string
header
required

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

Path Parameters

episodeId
string
required

Query Parameters

documentType
string
priority
enum<string>
Available options:
low,
normal,
high,
urgent

Response

200 - application/json

List of documents associated with the episode.

documents
object[]
totalCount
integer