Affinda · Arazzo Workflow

Affinda Create Document from Data and Index It

Version 1.0.0

Create a resume document directly from structured data, wait for it, then add it to a search index.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub Artificial IntelligenceDocument ProcessingIntelligent Document ProcessingIDPOCRResume ParsingInvoice ParsingReceipt ParsingDocument ExtractionDocument ClassificationDocument SplittingRecruitmentBankingInsuranceLogisticsHealthcareGovernmentArazzoWorkflows

Provider

affinda

Workflows

create-document-from-data-and-index
Create a document from structured data, wait for it, then index it.
Posts structured data to create a document, polls until meta.ready is true, and indexes the resulting document into a named index.
3 steps inputs: data, indexName, workspace outputs: documentIdentifier, indexedDocument
1
createFromData
Create a document directly from structured data with wait=false so an identifier is returned for polling.
2
pollUntilReady
Poll the document until meta.ready becomes true.
3
indexDocument
Add the created document to the search index so it becomes discoverable.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Affinda Create Document from Data and Index It
  summary: Create a resume document directly from structured data, wait for it, then add it to a search index.
  description: >-
    Creates a Search & Match document without a file upload. Structured resume or
    job description data is posted to the create-from-data endpoint, the resulting
    document is polled until ready, and it is then added to a search index so it
    becomes discoverable. Every step spells out its request inline so the flow can
    be read and executed without opening the underlying OpenAPI description.
  version: 1.0.0
  x-realizes-capability-ids:
  - BC-300.10
  x-capability-derivation:
    method: 'deterministic join: sourceDescriptions -> per-tag OpenAPI -> tag/capability edge. No classification at this step.'
    min_confidence: 0.7
    sources:
    - capability_id: BC-300.10
      capability_name: Talent Acquisition Management
      spec: affinda-search-match-api-openapi.yml
      confidence: 0.8
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: documentsApi
  url: ../openapi/affinda-documents-api-openapi.yml
  type: openapi
- name: searchMatchApi
  url: ../openapi/affinda-search-match-api-openapi.yml
  type: openapi
workflows:
- workflowId: create-document-from-data-and-index
  summary: Create a document from structured data, wait for it, then index it.
  description: >-
    Posts structured data to create a document, polls until meta.ready is true,
    and indexes the resulting document into a named index.
  inputs:
    type: object
    required:
    - data
    - indexName
    properties:
      data:
        type: object
        description: The structured resume or job description data to create the document from.
      workspace:
        type: string
        description: Optional workspace identifier to create the document in.
      indexName:
        type: string
        description: The index name to add the created document to.
  steps:
  - stepId: createFromData
    description: >-
      Create a document directly from structured data with wait=false so an
      identifier is returned for polling.
    operationId: createDocumentFromData
    requestBody:
      contentType: application/json
      payload:
        data: $inputs.data
        workspace: $inputs.workspace
        wait: false
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      identifier: $response.body#/meta/identifier
  - stepId: pollUntilReady
    description: Poll the document until meta.ready becomes true.
    operationId: getDocument
    parameters:
    - name: identifier
      in: path
      value: $steps.createFromData.outputs.identifier
    successCriteria:
    - condition: $statusCode == 200
    - context: $response.body
      condition: $.meta.ready == true
      type: jsonpath
    outputs:
      identifier: $response.body#/meta/identifier
  - stepId: indexDocument
    description: Add the created document to the search index so it becomes discoverable.
    operationId: createIndexDocument
    parameters:
    - name: name
      in: path
      value: $inputs.indexName
    requestBody:
      contentType: application/json
      payload:
        document: $steps.createFromData.outputs.identifier
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      document: $response.body#/document
  outputs:
    documentIdentifier: $steps.createFromData.outputs.identifier
    indexedDocument: $steps.indexDocument.outputs.document

Work with this as data

Every workflow here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This workflow
curl "https://apis.io/api/v1/arazzo/affinda-create-document-from-data-and-index-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.