Get Bank Statement sets
GET/api/v8/partner/bank-statements-set
Get Bank Statement sets
Request
Responses
- 200
A list of Bank Statement sets.
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- Array [
- ]
- ]
count integerrequired
The total number of results retrieved across all pages.
next (string | null)
The URL to the next page of results.
previous (string | null)
The URL to the previous page of results.
results object[]required
The collection of Document identifiers processed by the PDF Splitter.
id integerrequired
The unique identifier of the collections of processed documents.
document_ids integer[]
The unique identifiers of the documents created from processed PDF Splitter.
status stringrequired
Possible values: [processed
, in_progress
, deleted
, failed
]
page_breaks object[]
A list of page breaks to split a document. Each object defines what pages to use to create a new document.
page_start integerrequired
Possible values: > 0
Page start
page_end integerrequired
Possible values: > 0
{
"count": 0,
"results": [
{
"id": 0,
"status": "processed",
"page_breaks": [
{
"page_start": 0,
"page_end": 0
}
]
}
]
}
Loading...