Document Uploads
Retrieves a paginated list of document upload records for the specified project, optionally filtered and sorted.
Bearer authentication with JWT
The page number to retrieve.
The number of items per page.
Optional search text to filter document uploads.
The sorting option for the results.
Whether to sort in descending order.
trueOK
Forbidden
GET /projects/{projectIdentifier}/document-uploads HTTP/1.1
Host: api.example.uk.jylo.ai
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
[
{
"name": "text",
"isCompleted": true,
"objectIdentifier": "123e4567-e89b-12d3-a456-426614174000"
}
]Creates a new document upload record for the specified project.
Bearer authentication with JWT
OK
Bad Request
Forbidden
POST /projects/{projectIdentifier}/document-uploads HTTP/1.1
Host: api.example.uk.jylo.ai
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 34
{
"name": "text",
"isCompleted": true
}{
"name": "text",
"isCompleted": true,
"objectIdentifier": "123e4567-e89b-12d3-a456-426614174000"
}Retrieves a document upload record by its object identifier.
Bearer authentication with JWT
The unique identifier of the document upload record.
OK
Forbidden
Not Found
GET /projects/{projectIdentifier}/document-uploads/{objectIdentifier} HTTP/1.1
Host: api.example.uk.jylo.ai
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"name": "text",
"isCompleted": true,
"objectIdentifier": "123e4567-e89b-12d3-a456-426614174000"
}Updates a document upload record by its object identifier.
Bearer authentication with JWT
The unique identifier of the document upload record to update.
OK
Bad Request
Forbidden
Not Found
PATCH /projects/{projectIdentifier}/document-uploads/{objectIdentifier} HTTP/1.1
Host: api.example.uk.jylo.ai
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 34
{
"name": "text",
"isCompleted": true
}{
"name": "text",
"isCompleted": true,
"objectIdentifier": "123e4567-e89b-12d3-a456-426614174000"
}Last updated