Connect your own Ironclad CLM company -- launch and manage contract workflows, browse the signed-agreement Records repository, manage counterparty Entities and post-signature Obligations, and wire...
What this app can do
50 tools registered
Connect IroncladFree
Connect your own Ironclad CLM company using an OAuth Client (Client ID/Secret) registered in Ironclad's Company Settings > API, after checking it actually works.
Disconnect IroncladFree
Disconnect one Ironclad company. Nothing in Ironclad itself is changed; only the saved OAuth Client credentials here are deleted.
List ConnectionsFree
List the connected Ironclad companies.
List All Workflows8 tok
List active/in-progress Ironclad workflows (contracts currently moving through approval, not yet completed records). Paginated.
Get Workflow8 tok
Read one Ironclad workflow in full: current step, attribute values, participants, and approval state.
Launch Workflow16 tok
Launch a new Ironclad workflow (contract request) synchronously from a template. Blocks until created -- use launch_workflow_async if attaching large files.
Launch Workflow Async16 tok
Launch a new Ironclad workflow asynchronously (non-blocking) -- recommended when the launch also includes file attachments. Returns immediately with a launch acknowledgement; poll get_workflow with the returned id to see it settle.
Bulk Launch Workflow60 tok
Launch several workflows from the same template in one call, e.g. one NDA per new counterparty. Pass launches_json as a JSON array of {name, attributes} objects.
Cancel Workflow16 tok
Cancel an active Ironclad workflow before it completes.
Revert Workflow To Review16 tok
Send an active workflow back to its Review step -- e.g. after a signer rejects, or new redlines require another look.
List Workflow Schemas8 tok
List all workflow designs (templates) configured in this Ironclad company -- their template ids, needed to launch a workflow.
Get Workflow Schema8 tok
Read one workflow design (template) in full -- its launch-form attribute ids and types, needed before calling launch_workflow.
Update Workflow Attributes16 tok
Update one or more attribute values on an active workflow, e.g. correcting a counterparty name mid-review.
Get Workflow Attachment8 tok
Read one file attachment's metadata/download info on an active workflow.
Add Workflow Attachment16 tok
Attach a file (fetched from a publicly reachable URL) to an active workflow.
Create Workflow Comment16 tok
Add a comment to an active workflow, visible to its participants inside Ironclad.
Send Signature Request16 tok
Trigger Ironclad's e-signature flow for a workflow currently ready for signature, naming who should sign.
Get Signature Status8 tok
Read the current e-signature status of a workflow -- who has signed, who is pending.
Update Approval16 tok
Approve or reject a pending approval step on a workflow, acting as the connection's configured user.
List Records8 tok
List records (completed/signed agreements) in the connected Ironclad company, with optional filtering by type, last-updated timestamp, and one property value.
Get Record8 tok
Read one record (completed/signed agreement) in full, including its properties and attachment list.
Get Records Schema8 tok
Read the Records schema: every record type and its configured properties/attributes, needed before create_record or update_record.
Create Record16 tok
Create a new record directly (e.g. migrating a legacy signed agreement into Ironclad without running it through a workflow first).
Update Record16 tok
Update selected property values on an existing record. Only the properties you pass change.
Delete Record16 tok
Permanently delete a record. Cannot be undone through the API -- use with care.
Get Record Attachment8 tok
Read one record attachment's metadata and download link.
Add Record Attachment16 tok
Attach a file to an existing record by giving Ironclad a publicly reachable URL to fetch it from.
Delete Record Attachment16 tok
Permanently remove an attachment from a record. Cannot be undone.
Apply Contract Action16 tok
Apply a post-signature contract action to a record -- e.g. renew, terminate, or amend -- using the action types configured for that record's type.
Smart Import Record20 tok
Create a record from an already-signed document by URL, using Ironclad's own AI to extract its metadata automatically -- ideal for bulk-migrating a legacy contract archive.
List Entities8 tok
List counterparty/contact entities (companies and individuals) registered in the connected Ironclad company.
Get Entity8 tok
Read one counterparty/contact entity in full.
Create Entity16 tok
Create a new counterparty/contact entity (a company or individual your organization contracts with).
Update Entity16 tok
Update selected property values of an existing entity. Only the given properties change.
Delete Entity16 tok
Permanently delete a counterparty/contact entity. Cannot be undone -- records/workflows referencing it will lose that link.
List Relationship Types8 tok
List the relationship types available for linking entities to each other (e.g. 'Parent Company', 'Subsidiary').
List Obligations8 tok
List post-signature obligations (renewal reminders, SLA deliverables, compliance deadlines), optionally filtered to one record.
Get Obligation8 tok
Read one obligation in full.
Create Obligation16 tok
Create a new obligation linked to an existing record -- a deadline or deliverable that outlives the signature process.
Update Obligation16 tok
Update selected property values of an existing obligation. Only the given properties change.
Delete Obligation16 tok
Permanently delete an obligation. Cannot be undone.
List Webhooks8 tok
List webhook subscriptions configured on the connected Ironclad company.
Create Webhook16 tok
Subscribe to Ironclad workflow/record/obligation lifecycle events -- Ironclad will POST event payloads to your target URL as they happen.
Update Webhook16 tok
Update an existing webhook's target URL and/or subscribed events. Only the given fields change.
Delete Webhook16 tok
Permanently remove a webhook subscription. Cannot be undone.
Create Report16 tok
Start a data export (report) of records or workflows for offline analysis. Requires the Reports/Exports feature to be enabled on your Ironclad plan -- a permission error here likely means it isn't.
Get Report8 tok
Check the status of a data export and get its download URL once ready.
Audit Contract Health40 tok
Build one aggregated health report across the connected Ironclad company: active vs stalled workflows, recently completed workflows, and obligations due in the next 30 days -- one call instead of manually cross-referencing several reads.
Find Expiring Contracts40 tok
Value-add report: scan records and flag every one whose agreement/expiration date falls within a given window from now -- absorbs the client-side date-window math Ironclad's own list_records filter doesn't do.
Bulk Tag Records60 tok
Apply the same property values to several existing records in one call -- e.g. tagging every contract from an acquired subsidiary with a new business-unit code. Ironclad's own API has no native bulk-update endpoint for records, so this loops update_record and reports how many succeeded.