Ironclad · Arazzo Workflow

Ironclad Create and Retrieve a Contract Record

Version 1.0.0

Resolve the records schema, create a contract record, then read it back.

1 workflow 1 source API 1 provider
View Spec View on GitHub Contract Lifecycle ManagementCLMContractsLegal TechLegalOpsEnterpriseWorkflowsE-SignatureClickwrapArtificial IntelligenceAuthenticationSCIMWebhookArazzoWorkflows

Provider

ironclad

Workflows

create-and-retrieve-record
Resolve the records schema, create a record, then retrieve it.
Reads the records metadata, creates a contract record with the supplied type, name, and properties, and retrieves the new record.
3 steps inputs: authorization, name, properties, type outputs: record, recordId
1
resolveSchema
Retrieve the records metadata to confirm the available record types and property keys before writing.
2
createRecord
Create a new contract record with the supplied type, name, and properties.
3
retrieveRecord
Retrieve the newly created record to confirm the write.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Ironclad Create and Retrieve a Contract Record
  summary: Resolve the records schema, create a contract record, then read it back.
  description: >-
    A schema-aware record creation flow. The flow first retrieves the records
    metadata to confirm the available record types and property keys, creates a
    new contract record with the supplied metadata, and then retrieves the
    created record to confirm the write. Each step inlines its request so the
    chain can be read and executed without opening the underlying OpenAPI
    description.
  version: 1.0.0
sourceDescriptions:
- name: recordsApi
  url: ../openapi/ironclad-records-api-openapi.yml
  type: openapi
workflows:
- workflowId: create-and-retrieve-record
  summary: Resolve the records schema, create a record, then retrieve it.
  description: >-
    Reads the records metadata, creates a contract record with the supplied
    type, name, and properties, and retrieves the new record.
  inputs:
    type: object
    required:
    - authorization
    - type
    - name
    - properties
    properties:
      authorization:
        type: string
        description: Bearer token for the Ironclad Authorization header.
      type:
        type: string
        description: The record type to create (e.g. consultingAgreement).
      name:
        type: string
        description: The name of the record.
      properties:
        type: object
        description: Key/value map of record metadata properties.
  steps:
  - stepId: resolveSchema
    description: >-
      Retrieve the records metadata to confirm the available record types and
      property keys before writing.
    operationId: list-all-records-metadata
    parameters:
    - name: Authorization
      in: header
      value: $inputs.authorization
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      recordTypes: $response.body#/recordTypes
      schemaProperties: $response.body#/properties
  - stepId: createRecord
    description: >-
      Create a new contract record with the supplied type, name, and
      properties.
    operationId: create-a-record
    parameters:
    - name: Authorization
      in: header
      value: $inputs.authorization
    requestBody:
      contentType: application/json
      payload:
        type: $inputs.type
        name: $inputs.name
        properties: $inputs.properties
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      recordId: $response.body#/id
  - stepId: retrieveRecord
    description: >-
      Retrieve the newly created record to confirm the write.
    operationId: retrieve-a-record
    parameters:
    - name: Authorization
      in: header
      value: $inputs.authorization
    - name: id
      in: path
      value: $steps.createRecord.outputs.recordId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      record: $response.body
  outputs:
    recordId: $steps.createRecord.outputs.recordId
    record: $steps.retrieveRecord.outputs.record

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/ironclad-create-and-retrieve-record"
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.