Retrieve a list of documents.
List of documents
Bad request
Rate limit exceeded
{- "data": [
- {
- "id": "6040dc9680b782b365ea77d5",
- "completedAt": "1990-12-31T15:59:60-08:00",
- "completedBy": "string",
- "createdAt": "1990-12-31T15:59:60-08:00",
- "createdBy": "string",
- "fileId": "5349b4ddd2781d08c09890f4",
- "entities": {
- "currency": "EUR",
- "items": [
- {
- "name": "High quality cement for rabbit hole sealing",
- "qty": 1
}
], - "number": "2018-DE-0011122351",
- "qty": 2
}, - "externalId": "doc-0001",
- "externalData": {
- "internalSystemId": "sap-01"
}, - "projectId": "6040dc9680b782b365ea77d5",
- "state": "done",
- "title": "scan-doc-1.jpg",
- "updatedAt": "1990-12-31T15:59:60-08:00",
- "updatedBy": "string"
}
], - "limit": 20,
- "offset": 0,
- "totalCount": 1000
}
Request a processing of a file that was previously uploaded.
The fileId
in the request body is representing the identifier of the file that was returned by the upload endpoint.
As a result of this request a document will be created and its identifier will be returned in the response.
The projectId
in the request body is an identifier of the project to create the document in.
Payload for processing the given file
Processing accepted
Error occured while processing request
Error occured while processing request
Rate limit exceeded
{- "fileId": "5349b4ddd2781d08c09890f4",
- "projectId": "00000020f51bb4362eee2a4d",
- "externalId": "doc-0001",
- "externalData": {
- "key1": "value1",
- "key2": "value2"
}
}
{- "documentId": "6040dc9680b782b365ea77d5",
- "fileId": "5349b4ddd2781d08c09890f4",
- "projectId": "00000020f51bb4362eee2a4d"
}
Retrieve a document by id
Document retrieved.
Error occured while processing request
Rate limit exceeded
{- "id": "6040dc9680b782b365ea77d5",
- "completedAt": "1990-12-31T15:59:60-08:00",
- "completedBy": "string",
- "createdAt": "1990-12-31T15:59:60-08:00",
- "createdBy": "string",
- "fileId": "5349b4ddd2781d08c09890f4",
- "entities": {
- "currency": "EUR",
- "items": [
- {
- "name": "High quality cement for rabbit hole sealing",
- "qty": 1
}
], - "number": "2018-DE-0011122351",
- "qty": 2
}, - "externalId": "doc-0001",
- "externalData": {
- "internalSystemId": "sap-01"
}, - "projectId": "6040dc9680b782b365ea77d5",
- "state": "done",
- "title": "scan-doc-1.jpg",
- "updatedAt": "1990-12-31T15:59:60-08:00",
- "updatedBy": "string"
}
Update information about the transfer for the given document
Payload about the transfer
Document transfer infor accepted
Error occured while processing request
Error occured while processing request
Rate limit exceeded
{- "successful": true
}
{- "detail": "The document with given identifier does not exist",
- "status": 404,
- "title": "Document does not exist"
}
Update the external data for a document with given identifier. The external data are provided as a flat JSON object. The payload of this requests completley overrides the existing external data of a document. To remove the data, justsend empty JSON object {}
in the payload.
Please note that the maximum lenght of an key is 50 characters. Any value with a longer key will be omitted. The maximum amount of key-value pairs is limited to 20.
External data provided for the document accepted.
Error occured while processing request
Error occured while processing request
Rate limit exceeded
{- "key1": "value1",
- "key2": "value2"
}
{- "detail": "The document with given identifier does not exist",
- "status": 404,
- "title": "Document does not exist"
}
Provide an external identifier for a document with given id
External ID provided for the document accepted.
Error occured while processing request
Error occured while processing request
Rate limit exceeded
{- "detail": "The document with given identifier does not exist",
- "status": 404,
- "title": "Document does not exist"
}
Provide a title for a document with given id.
Document title provided for the document accepted.
Error occured while processing request
Error occured while processing request
Rate limit exceeded
{- "detail": "The document with given identifier does not exist",
- "status": 404,
- "title": "Document does not exist"
}
Provides a list of states the given document passed through. If the document is still in processing, the number of states returend must not be considered as final. Subsequent calls to this endpoint might get more states as the document is progressing the processing pipeline.
Document states.
Error occured while processing request
Rate limit exceeded
[- {
- "state": "done",
- "updatedAt": "1990-12-31T15:59:60-08:00"
}
]