Get list of documents in queue
GET/queues/:queueId/documents
List documents in Workflow Queue; available as an Add-On Module
Request
Path Parameters
Queue Id
Query Parameters
Site Identifier
Limit Results
10
Next page of results token
Responses
- 200
200 OK
Response Headers
Access-Control-Allow-Origin
string
Access-Control-Allow-Methods
string
Access-Control-Allow-Headers
string
- application/json
- Schema
- Example (from schema)
Schema
Array [
Array [
]
]
Next page of results token
documents
object[]
List of search result documents
workflow
object
Name of Workflow
Workflow identifier
Description of Workflow
Inserted Timestamp
User who created workflow
Whether the Workflow is in use
Status of the Workflow
Possible values: [ACTIVE
, INACTIVE
]
document
object
Site Identifier
Path or Name of document
Document Content Width property
Document Content Height property
Path or Name of deep link
Inserted Timestamp
Last Modified Timestamp
Document checksum, changes when document file changes
The type of checksum to use for file validation
Possible values: [SHA1
, SHA256
]
Document Identifier
Document Content-Type
User who added document
Document size
Document version
Document Version Identifier
Document storage version
Parent Document Identifier
metadata
object[]
List of document Metadata
Metadata key
Metadata value
Metadata values
{
"next": "string",
"documents": [
{
"workflow": {
"name": "string",
"workflowId": "string",
"description": "string",
"insertedDate": "string",
"userId": "string",
"inUse": true,
"status": "ACTIVE"
},
"document": {
"siteId": "string",
"path": "string",
"width": "string",
"height": "string",
"deepLinkPath": "string",
"insertedDate": "string",
"lastModifiedDate": "string",
"checksum": "string",
"checksumType": "SHA1",
"documentId": "string",
"contentType": "string",
"userId": "string",
"contentLength": 0,
"version": "string",
"versionKey": "string",
"s3version": "string",
"belongsToDocumentId": "string",
"metadata": [
{
"key": "string",
"value": "string",
"values": [
"string"
]
}
]
}
}
]
}