curl --request POST \
  --url https://api.splose.com/v1/patients/{id}/file \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: multipart/form-data' \
  --form 'file=<string>'
{
  "id": 1,
  "name": "patientFile.pdf",
  "patientId": 1
}

Authorizations

Authorization
string
header
required

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

Body

multipart/form-data
file
string
required

Binary encoded file

Response

200
application/json
Successfully uploaded file
id
integer
required

Uploaded file ID

Required range: x > 0
Example:

1

name
string
required

Uploaded file name

Example:

"patientFile.pdf"

patientId
integer
required

Patient ID

Required range: x > 0
Example:

1