Classifier
Beta
Classifier
Create Classify Job
Create a classify job. Experimental: not production-ready and subject to change.
post/api/v1/classifier/jobs
Query parameters
project_idstring uuid nullable
organization_idstring uuid nullable
Cookies
sessionstring nullable
Request body
Example request
{
"rules": [
{
"type": "invoice",
"description": "contains invoice number, line items, and total amount"
}
],
"webhook_configurations": [
{
"webhook_events": [
"parse.success",
"parse.error"
],
"webhook_output_format": "json"
}
]
}Response
Successful Response
Example response
{
"rules": [
{
"type": "invoice",
"description": "contains invoice number, line items, and total amount"
}
]
}Changes
Changed in 2 of the 33 revisions of this API.3
- ○
added the optional property
detail/items/ctxto the response with the422statusresponse-optional-property-added
- ○
added the optional property
detail/items/inputto the response with the422statusresponse-optional-property-added
This revision also has 5 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog
- ○
- ○
added the new optional request property
webhook_configurations/items/webhook_output_formatnew-optional-request-property
- ○