Sensible · Arazzo Workflow

Sensible Config Versions Then Get By Version

Version 1.0.0

List the version history of a configuration, then fetch one specific version of that configuration in full.

1 workflow 1 source API 1 provider
View Spec View on GitHub ArazzoWorkflows

Provider

sensible-so

Workflows

config-versions-then-get-by-version
List a configuration's versions and fetch one version in full.
Lists the version ids for a configuration, then retrieves the first version in the list as stringified JSON.
2 steps inputs: apiKey, configName, typeId outputs: configuration, versions
1
listVersions
List the version ids for the named configuration and capture the first version id in the list.
2
getConfigurationByVersion
Fetch the configuration at the selected version id as stringified JSON.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Sensible Config Versions Then Get By Version
  summary: List the version history of a configuration, then fetch one specific version of that configuration in full.
  description: >-
    A configuration version-audit flow. The workflow lists the version ids for
    a named configuration in a document type, takes the first version id from
    the list, and then fetches that exact configuration version as stringified
    JSON. This is the read path used to inspect or roll back to a prior config
    version. 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
workflows:
- workflowId: config-versions-then-get-by-version
  summary: List a configuration's versions and fetch one version in full.
  description: >-
    Lists the version ids for a configuration, then retrieves the first version
    in the list as stringified JSON.
  inputs:
    type: object
    required:
    - apiKey
    - typeId
    - configName
    properties:
      apiKey:
        type: string
        description: Sensible API key used as the Bearer token.
      typeId:
        type: string
        description: The document type id (v4 UUID) containing the configuration.
      configName:
        type: string
        description: The name of the configuration whose versions to list.
  steps:
  - stepId: listVersions
    description: >-
      List the version ids for the named configuration and capture the first
      version id in the list.
    operationId: get-configuration-versions
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.apiKey"
    - name: type-id
      in: path
      value: $inputs.typeId
    - name: config-name
      in: path
      value: $inputs.configName
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      versions: $response.body#/versions
      firstVersionId: $response.body#/versions/0/version_id
  - stepId: getConfigurationByVersion
    description: >-
      Fetch the configuration at the selected version id as stringified JSON.
    operationId: get-configuration-by-version
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.apiKey"
    - name: type-id
      in: path
      value: $inputs.typeId
    - name: config-name
      in: path
      value: $inputs.configName
    - name: version
      in: path
      value: $steps.listVersions.outputs.firstVersionId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      name: $response.body#/name
      configuration: $response.body#/configuration
      versionId: $response.body#/version_id
  outputs:
    versions: $steps.listVersions.outputs.versions
    configuration: $steps.getConfigurationByVersion.outputs.configuration

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-config-versions-then-get-by-version-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.