Sensible · Arazzo Workflow

Sensible Get Document Type Then List Configurations

Version 1.0.0

Fetch a document type by id and then enumerate the configurations defined inside it.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub ArazzoWorkflows

Provider

sensible-so

Workflows

get-document-type-then-list-configurations
Fetch a document type by id and list the configurations it contains.
Retrieves the document type by id, then lists the configurations defined within that document type.
2 steps inputs: apiKey, typeId outputs: configurations, documentTypeName
1
getDocumentType
Fetch the document type by its id to read its name and schema.
2
listConfigurations
List the configurations defined inside the resolved document type.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Sensible Get Document Type Then List Configurations
  summary: Fetch a document type by id and then enumerate the configurations defined inside it.
  description: >-
    A drill-down flow that resolves a document type and then lists the configs
    that belong to it. The workflow fetches the document type by its id to read
    its name and schema, then lists the configurations inside that type so the
    caller has the full picture of how the type extracts data. This is the read
    path used to understand an existing extraction target. Every step spells out
    its request inline, including the Bearer authorization.
  version: 1.0.0
sourceDescriptions:
- name: configurationApi
  url: ../openapi/sensible-so-configuration-api-openapi.yml
  type: openapi
- name: documentTypeApi
  url: ../openapi/sensible-so-document-type-api-openapi.yml
  type: openapi
workflows:
- workflowId: get-document-type-then-list-configurations
  summary: Fetch a document type by id and list the configurations it contains.
  description: >-
    Retrieves the document type by id, then lists the configurations defined
    within that document type.
  inputs:
    type: object
    required:
    - apiKey
    - typeId
    properties:
      apiKey:
        type: string
        description: Sensible API key used as the Bearer token.
      typeId:
        type: string
        description: The document type id (v4 UUID) to fetch and enumerate.
  steps:
  - stepId: getDocumentType
    description: >-
      Fetch the document type by its id to read its name and schema.
    operationId: get-document-type
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.apiKey"
    - name: type-id
      in: path
      value: $inputs.typeId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      name: $response.body#/name
      schema: $response.body#/schema
  - stepId: listConfigurations
    description: >-
      List the configurations defined inside the resolved document type.
    operationId: list-configurations
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.apiKey"
    - name: type-id
      in: path
      value: $inputs.typeId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      configurations: $response.body
  outputs:
    documentTypeName: $steps.getDocumentType.outputs.name
    configurations: $steps.listConfigurations.outputs.configurations

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/sensible-so-get-document-type-then-list-configurations-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.