Skip to main content
POST
/
workflows
/
extractionTemplates
/
getAll
List All Extraction Templates
curl --request POST \
  --url https://api.emberqa.com/api/workflows/extractionTemplates/getAll \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{}'
{
  "statusCode": "SUCCESS",
  "statusMessage": "Successfully retrieved extraction templates",
  "docs": [
    {
      "id": "123e4567-e89b-12d3-a456-426614174000",
      "name": "Invoice Data Extraction",
      "evaluation_schema": {
        "invoice_number": "Find the invoice number",
        "total_amount": "Locate the total amount"
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

API key obtained from the EmberQA dashboard under the "Integrations" tab

Body

application/json

The body is of type object.

Response

Successfully retrieved extraction templates

statusCode
string
Example:

"SUCCESS"

statusMessage
string
Example:

"Successfully retrieved extraction templates"

docs
object[]