LogoLogo
Sypht AppHelp CenterMarketplace
  • Introduction
  • Setup
    • Authentication
  • Upload and Extract
    • Upload and Extract (v2)
    • Upload and Extract (v1)
    • File management
  • Workflows (v1)
    • Real-time validation
    • Smart document split
    • Entity matching
  • Workflows (v2)
    • extraction (sypht.extract)
    • Real-time validation (sypht.validate)
    • Smart document split (sypht.split)
  • Field types
    • Line Items
    • Classification fields
    • Signals
    • Values
  • API Docs
    • API Introduction
    • Authentication
      • POST - Authentication Token
    • Upload Document
      • POST - Upload Document
      • POST - Upload JSON
    • Results
      • GET - Document Results
      • GET - Image Results
    • Upload Annotation
      • PUT - Upload Annotation
Powered by GitBook
On this page

Was this helpful?

  1. Workflows (v2)

extraction (sypht.extract)

Extract predicted data from documents

The basic sypht extraction workflow. Takes a file id and array of product ids as input, ingests the file and stores the result for later retrieval via the results endpoint.

POST /workflows/sypht.extract/jobs

Request body:

{
    "inputs":{
        "file_id":"73a958f8-61e9-4c44-82bc-05ab7db95de2",
        "product_ids":["ndis-claims:2"]
    }
}

file_id is the file id returned by the file upload endpoint

product_ids is an array of product ids that you want to extract from the document. Product ids can be found in the documentation for your subscribed products in the sypht marketplace. You need to have an active subscription to request an extraction workflow.

PreviousEntity matchingNextReal-time validation (sypht.validate)

Last updated 2 years ago

Was this helpful?