Get the Workflow Tool Catalog
const url = 'https://api.agentaab.com/api/app/example/workflow/tool-catalog/';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api.agentaab.com/api/app/example/workflow/tool-catalog/ \ --header 'Authorization: Bearer <token>'Return built-in and Connection-backed Tool operations available to an authenticated creator for this Workflow. Entries are public-safe execution templates and never contain credential values.
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”Responses
Section titled “Responses”The current redacted Workflow Tool Catalog.
object
Immutable public-safe template for one executable Workflow Tool operation.
object
object
Exact HTTPS execution endpoint materialized into the v1 Tool binding.
Server-managed reference. It is not a credential value.
Bounded object-root JSON Schema used to generate Inspector controls.
object
object
object
object
Example
{ "catalog": [ { "category": "built_in", "execution": { "credential_mode": "bearer" }, "connection": { "provider": "web_search", "status": "ready" }, "risk": { "level": "deterministic" } } ]}The creator session is missing, invalid, expired, or does not have a verified email.
object
Example
{ "code": "creator_session_required"}A public Agent Business runtime credential cannot access creator control-plane APIs.
object
Example
{ "code": "runtime_token_not_allowed"}The Workflow is missing or inaccessible.
object
Example
{ "code": "application_unavailable"}The Agent Business is not a Workflow, or the creator identity conflicts with an existing binding.
An unexpected Workspace Connection failure was sanitized before returning it.
object
Example
{ "code": "workspace_connection_failed"}The configured creator identity service failed while verifying the session.
object
Example
{ "code": "creator_session_verification_failed"}Creator auth, control-plane storage, or authoritative Connection storage is unavailable.