Docparser integration (Productivity, Data). Imported from open-connector.
https://api.docparser.com/v1/ping
/v1/parsers
/v1/parser/models/{parserId}
| Param | Type | Required | Description |
|---|---|---|---|
| parserId | string | required | The parser identifier to list model layouts for. |
/v1/document/upload/{parserId}
| Param | Type | Required | Description |
|---|---|---|---|
| parserId | string | required | The parser identifier to upload the document to. |
| contentBase64 | string | required | The base64-encoded document content to upload. |
| fileName | string | optional | The file name to attribute to the uploaded document. |
| remoteId | string | optional | An optional passthrough ID that is stored with the document. |
/v2/document/fetch/{parserId}
| Param | Type | Required | Description |
|---|---|---|---|
| parserId | string | required | The parser identifier to import the document into. |
| url | string | required | The publicly accessible document URL to fetch. |
| remoteId | string | optional | An optional passthrough ID that is stored with the fetched document. |
/v2/document/status/{parserId}/{documentId}
| Param | Type | Required | Description |
|---|---|---|---|
| parserId | string | required | The parser identifier that owns the document. |
| documentId | string | required | The unique document identifier returned during import. |
/v1/results/{parserId}/{documentId}
| Param | Type | Required | Description |
|---|---|---|---|
| parserId | string | required | The parser identifier that owns the document. |
| documentId | string | required | The unique document identifier returned during import. |
| format | string | optional | The output format for parsed data. `object` returns nested JSON and `flat` retu… |
| includeChildren | boolean | optional | Whether parsed data of child documents should also be returned. |
/v1/results/{parserId}
| Param | Type | Required | Description |
|---|---|---|---|
| parserId | string | required | The parser identifier to read results from. |
| format | string | optional | The output format for parsed data. `object` returns nested JSON and `flat` retu… |
| list | string | optional | The upstream result list mode used to filter which documents are returned. |
| limit | integer | optional | The maximum number of result rows to return. |
| date | string | optional | The ISO 8601 or Unix timestamp filter used with `uploaded_after` or `processed_… |
| remoteId | string | optional | Restrict results to documents with this remote ID. |
| includeProcessingQueue | boolean | optional | Whether in-progress documents should also be included in the result set. |
| sortBy | string | optional | The timestamp field used to sort multiple-document results. |
| sortOrder | string | optional | The sort direction used for multiple-document results. |
/v1/document/reparse/{parserId}
| Param | Type | Required | Description |
|---|---|---|---|
| parserId | string | required | The parser identifier that owns the documents. |
| documentIds | array | optional | The document identifiers to schedule for re-parsing. |
/v1/document/reintegrate/{parserId}
| Param | Type | Required | Description |
|---|---|---|---|
| parserId | string | required | The parser identifier that owns the documents. |
| documentIds | array | optional | The document identifiers to schedule for reintegration. |