For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
GuidesAPI ReferenceChangelog
GuidesAPI ReferenceChangelog
  • API Reference
      • GETList extractions
      • POSTExtract document
      • POSTUpload and extract document
      • GETGet extraction
      • POSTSubmit extraction feedback
  • Event Reference
API ReferenceDocument Insights

Submit extraction feedback

POST
https://api.plextera.com/api/public/v1/document-insights/extractions/:extractionId/feedback
POST
/api/public/v1/document-insights/extractions/:extractionId/feedback
$curl -X POST https://api.plextera.com/api/public/v1/document-insights/extractions/extractionId/feedback \
> -H "Authorization: <apiKey>" \
> -H "Content-Type: application/json" \
> -d '{
> "message": "The HDL value should be reviewed."
>}'
202Accepted
1{
2 "id": "string",
3 "extractionId": "string",
4 "message": "string",
5 "type": "ERROR",
6 "fieldId": "string",
7 "createdAt": "2024-01-15T09:30:00Z"
8}
Was this page helpful?
Previous

List runs

Next
Built with

Authentication

Authorizationstring

Use the API key format: api-key <token>.

Path parameters

extractionIdstringRequired

Request

This endpoint expects an object.
messagestringRequired1-1024 characters

Human-readable feedback message. Maximum length: 1024 characters.

typeenumOptional

Feedback type. ERROR marks the extraction as needing correction and review. INFO records a note without marking the extraction as incorrect. Defaults to ERROR when omitted.

Allowed values:
fieldIdstringOptional1-256 characters

Optional extracted field identifier. Include it when feedback applies to a specific field from output.fields; omit it for general extraction feedback.

Response

Accepted
idstring
extractionIdstring
messagestring
typeenum
Feedback type accepted by Document Insights.
Allowed values:
fieldIdstring or null
The field identifier supplied in the request. Returned as null for general extraction feedback.
createdAtdatetime