v34

latestOpenAPI 3.1.0raw.githubusercontent.com2026-06-09194386949.7 KB
Classifier
Beta
Classifier

List Classify Jobs

List classify jobs. Experimental: not production-ready and subject to change.

get/api/v1/classifier/jobs

Query parameters

project_idstring uuid nullable
organization_idstring uuid nullable
page_sizeinteger nullable
page_tokenstring nullable

Cookies

sessionstring nullable

Response

Successful Response

next_page_tokenstring nullable

A token, which can be sent as page_token to retrieve the next page. If this field is omitted, there are no subsequent pages.

total_sizeinteger nullable

The total number of items available. This is only populated when specifically requested. The value may be an estimate and can be used for display purposes only.

Example response

{
  "items": [
    {
      "rules": [
        {
          "type": "invoice",
          "description": "contains invoice number, line items, and total amount"
        }
      ]
    }
  ]
}