Skip to main content
GET
/
v1
/
jobs
/
{packageId}
/
files
Get all files for a packageId
curl --request GET \
  --url https://demands-api.tavrn.ai/v1/jobs/{packageId}/files \
  --header 'Authorization: Bearer <token>'
{
  "packageId": "<string>",
  "files": [
    {
      "key": "<string>",
      "name": "<string>",
      "size": 123,
      "type": "medical-record"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

packageId
string
required

The package ID of the job.

Response

A list of files for the package

packageId
string
files
object[]