Product

How Jentic Works

From API assessment to production deployment in four simple steps.

Product Overview

PLATFORM

Jentic OneSelf-hosted, open-source control plane between your agents and any APIAPI DirectoryBrowse 10,000+ APIs ready for AI agent integrationAPI ScorecardAssess your APIs for AI-readiness with automated scoringAgentic SandboxSafely simulate AI agents with your production APIsJenticSign in to the Jentic web app

CAPABILITIES

IntegrationConnect AI agents to your existing systemsWorkflowsDiscover and capture successful agent workflowsGovernanceDefine, observe, and enforce AI policies

TOOLS

Arazzo UIVisualize Arazzo workflows as interactive documentationArazzo EditorBuild and edit multi-step API workflows visually
Pricing
Developers

GET STARTED

DocumentationGuides and API referenceQuickstartGet up and running in minutes

COMMUNITY

GitHubOpen source projects and examplesOpen StandardsBuilt on open specs. Never locked in.
Resources
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Install Jentic OneBook a Demo
How Jentic WorksJentic OneAPI DirectoryAPI ScorecardAgentic SandboxJenticIntegrationWorkflowsGovernanceArazzo UIArazzo Editor
Pricing
DocumentationQuickstartGitHubOpen Standards
Resources
About UsCareersContact
Request a demoInstall Jentic One
Jentic
For Enterprises
  • Product Overview
  • Agentic Sandbox
  • Book a Demo
For Developers
  • Jentic One
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
  • Trust Centre
ISO/IEC 27001:2022 certification badge issued by Prescient Security

Information Security Management System

Certified to ISO/IEC 27001:2022 by Prescient Security

Terms & Conditions•Privacy Policy•
© 2026 Jentic. All rights reserved.
APIs / Productivity / Ibm / IBM Business Automation Workflow API
IBM Business Automation Workflow API logo

IBM Business Automation Workflow API

Browse all Ibm APIs
✓ Official Vendor SpecProductivityTask Managementbasic19 EndpointsREST

For Agents

Start, query, and act on IBM BAW process instances, human tasks, and cases - claim, reassign, suspend, resume, and complete work programmatically.

Use for: I need to start a loan approval process in BAW, I want to claim a pending review task for a specific user, Reassign an overdue task to another approver in BAW, Suspend a process instance while we investigate an exception

Not supported: Does not handle business-rule execution, BPMN authoring, or low-code app design - use for runtime BAW process, task, and case operations only.

IBM Business Automation Workflow (BAW) is the workflow and case management engine in IBM Cloud Pak for Business Automation, used to coordinate long-running business processes such as loan approvals, claims handling, and onboarding. The REST API exposes process instances, human tasks, and case folders so external systems and agents can start, suspend, claim, reassign, and complete work without going through the BAW web client. It targets enterprise process owners who need to embed BAW operations inside larger automations or expose them to AI agents.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the IBM Business Automation Workflow API to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the IBM Business Automation Workflow API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.

Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.

1

Step 1: Jentic One Host machine

# On the machine that will host your Jentic One instance:
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fibm.com%2Fbusiness-automation-workflow-api" | sh
2

Step 2: Agent machine

# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fibm.com%2Fbusiness-automation-workflow-api" | sh
jentic register       # connects your agent to your Jentic One instance

Jentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.

Capabilities

What an agent can do with IBM Business Automation Workflow API.

Start a new process instance from a BPMN definition via /processes

Suspend or resume a running process instance via /process/{instanceId}/suspend and /resume

Claim a human task on behalf of a user via /task/{taskId}/claim

Reassign a task to another user or group via /task/{taskId}/reassign

Open, update, and search case folders via /cases and /case/{caseId}

Run BAW search queries against processes and tasks via /search/query

Use Cases

Patterns agents use IBM Business Automation Workflow API for, with concrete tasks.

★ Process Instance Orchestration

Trigger BAW processes from external systems - for example, kick off an onboarding workflow when a CRM deal closes, or suspend a process when an exception is raised in another system. The API supports starting, suspending, resuming, and inspecting process instances by ID, so an agent can orchestrate long-running workflows without operating the BAW Process Portal.

Start a process named LoanApproval with the applicant ID and loan amount, then poll /process/{instanceId} until status is Completed.

Human Task Routing

Route, claim, and reassign human tasks created by BAW processes. An agent can list outstanding tasks for a queue, claim a task on behalf of a worker, or reassign overdue work to a backup approver. This makes it possible to integrate BAW work into a unified inbox or a Slack-driven approval flow.

Find the oldest unclaimed task in the credit-review queue, claim it for user jdoe, then mark it complete with the approval decision.

Case Management Integration

Open and update BAW case folders from external systems so a single case can carry documents, tasks, and process activity from CRM, ECM, and email channels. The API exposes /cases for create and list operations and /case/{caseId} for read and update, letting an agent maintain case state without manual data entry in the BAW UI.

Create a case of type ClaimsIntake with the policy number and claimant details, then attach a list of related task IDs.

AI Agent Workflow Operations

An AI agent monitors BAW for stuck or overdue tasks and takes corrective action - reassigning tasks, suspending processes pending input, or escalating cases. Through Jentic, the agent searches by intent, loads the BAW operation schema, and executes calls against the BAW REST endpoint without owning BAW credentials directly. Typical agent integration is under an hour.

Search Jentic for 'reassign a BAW task', load the /task/{taskId}/reassign schema, and reassign every task older than 48 hours to the backup approver.

Key Endpoints

19 endpoints — ibm business automation workflow (baw) is the workflow and case management engine in ibm cloud pak for business automation, used to coordinate long-running business processes such as loan approvals, claims handling, and onboarding.

METHOD

PATH

DESCRIPTION

GET

/processes

List process instances

GET

/process/{instanceId}

Get a process instance by ID

POST

/process/{instanceId}/suspend

Suspend a running process

POST

/process/{instanceId}/resume

Resume a suspended process

POST

/task/{taskId}/claim

Claim a human task

POST

/task/{taskId}/reassign

Reassign a task to another user

GET

/cases

List case folders

POST

/search/query

Run a BAW search query

GET

/processes

List process instances

GET

/process/{instanceId}

Get a process instance by ID

POST

/process/{instanceId}/suspend

Suspend a running process

POST

/process/{instanceId}/resume

Resume a suspended process

POST

/task/{taskId}/claim

Claim a human task

POST

/task/{taskId}/reassign

Reassign a task to another user

GET

/cases

List case folders

POST

/search/query

Run a BAW search query

Why Jentic?

What agents get from Jentic-routed access to this vendor.

Setup

Setup

Wiring the IBM Business Automation Workflow API by hand means configuring basic auth against your BAW server host and port and mapping its runtime process and task routes yourself. Through Jentic you install once, import the IBM Business Automation Workflow API from the API Directory, store the credentials once, and your agent calls it.

Permission scoping

Permission scoping

BAW puts the process instance and task ids in the URL path (/process/{instanceId}, /task/{taskId}), so a rule can pin your agent to reading and searching processes and cases. You choose the operations it may call, so state changes like suspending a process instance or reassigning a task are not included unless you add them.

Credential management

Credential isolation

Your BAW credentials are stored once, encrypted, by your own Jentic One instance and injected at execution time. They never enter the agent's prompt, logs, or context.

Intent-based discovery

Intent-based discovery

Agents search Jentic by intent such as 'list running BAW processes' or 'claim a workflow task', and Jentic returns the matching operation with its input schema so the agent calls the right endpoint without browsing the reference docs.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Complementary

IBM Operational Decision Manager API

→

ODM executes business rules; BAW orchestrates the long-running processes that call those rules.

Use ODM when the agent needs a deterministic decision (rate, eligibility, routing). Use BAW when the agent needs to drive a multi-step process or human-task flow.

Complementary

IBM webMethods Integration API

→

webMethods integrates BAW with external SaaS systems via flow services and connectors.

Use webMethods to move data between BAW and other systems via prebuilt connectors. Use BAW directly when the operation is on a process, task, or case.

Alternative

Camunda API

→

Camunda is a developer-focused BPMN/DMN engine; BAW is the IBM enterprise workflow and case platform.

Choose Camunda for cloud-native, developer-led process automation. Choose BAW when the organisation already runs IBM Cloud Pak for Business Automation.

FAQs

Specific to using IBM Business Automation Workflow API through Jentic.

What authentication does the IBM Business Automation Workflow API use?

The BAW REST API uses HTTP basic authentication against a BAW user account. Through Jentic, those BAW credentials are stored in your Jentic One instance and exposed to agents only through scoped Jentic credentials - the basic auth header never appears in the agent's prompt context.

Can I claim and reassign human tasks with the IBM BAW API?

Yes. Use POST /task/{taskId}/claim to claim a task on behalf of a user, POST /task/{taskId}/release to release it back to the queue, and POST /task/{taskId}/reassign to move it to another user or group. These match the actions available in the BAW Process Portal task list.

How do I start a BAW process through Jentic?

Search Jentic for 'start a BAW process', load the /processes POST schema, and execute the call with the process definition name and the input variables. Use pip install jentic and the async search, load, and execute pattern to drive the call from Python.

Does the IBM BAW API support case management?

Yes. The /cases and /case/{caseId} endpoints cover creating, listing, retrieving, and updating case folders, which is the BAW case management surface introduced as part of the Cloud Pak for Business Automation suite.

What are the rate limits for the IBM BAW API?

BAW does not publish a fixed public rate limit; throughput depends on the deployment topology, the configured thread pool, and the underlying database. Treat 429 and 503 responses as backpressure signals and retry with exponential backoff.

How do I search across BAW processes and tasks?

POST a query to /search/query with the BAW saved-search ID or an ad-hoc filter expression. The endpoint returns matching processes, tasks, or cases depending on the search definition, which is useful for building queue dashboards over the API.

Can I limit what my agent is allowed to do with the IBM Business Automation Workflow API?

Yes. Because you run Jentic One yourself, you decide which BAW operations the agent may call, and your own rules govern the stored credentials and the endpoints it reaches. Since BAW puts the process and task IDs in the URL path, such as /process/{instanceId} and /task/{taskId}, you can pin the agent to read-only work like listing processes and running /search/query while withholding state changes. Operations such as suspending a process instance, claiming a task, or reassigning work stay off limits unless you explicitly grant them.

GET STARTED

Start building with IBM Business Automation Workflow API

Explore with Jentic One
View OpenAPI Document