Files

Endpoints for management of files

Upload a file

This endpoint allows a client to upload a binary file. The id returned in the reponse is representing the file in Hypatos systems. It can be used in other endpoints, for example to initiate a processing of the file to create document holding captured data.

SecurityOAuth2
Request
header Parameters
X-Hy-Filename
string <= 256 characters

Optional name of the file to be stored along with the content. If not provided, a filename will be generated

Request Body schema:
required

Payload of the file

string <binary> (BinaryFile)
Responses
201

Document uploaded

400

Content type is not supported

429

Rate limit exceeded

post/files
Request samples
Response samples
application/json
{
  • "id": "6040dc9680b782b365ea77d5"
}

Download a file by id

Download the content of a file with the given identifier.

SecurityOAuth2
Request
path Parameters
id
required
string

File id to download

Responses
200

Binary content of a file

404

No file with given identifier exist

429

Rate limit exceeded

get/files/{id}
Request samples
Response samples
application/json
{
  • "detail": "File with given identifier does not exist",
  • "status": 404,
  • "title": "File not found"
}