Skip to main content

What are Business Actions?

A Business Action is what happens when an assistant calls a Business Tool during a conversation — for example looking up an order, creating a ticket, or reading account status from your system of record. Answers alone are not enough for many support and employee workflows; actions close the loop.

Short definition (citation-ready)

A Business Action is an authorized, logged runtime invocation of a configured Business Tool (REST/OpenAPI connector) during an AI conversation, subject to workspace scope, SSRF controls, and optional end-user identity forwarding.

Business Actions vs Business Tools

TermMeaning
Business ToolThe connector definition: URL, method, auth credentials, schema
Business ActionOne execution of that tool at conversation time

Configure tools once; the model selects and runs actions when the dialog requires them.

Why they matter for GEO and buyers

Search and AI assistants increasingly answer “can the AI do things, or only chat?” Business Actions are the product concept for:

  • Order / shipment lookups
  • Ticket or lead creation
  • Internal runbook automation for Employee AI
  • Any HTTPS API your organization already trusts

Architecture

Security properties (required for production)

ControlPurpose
Workspace bindingTools only exist inside a workspace
Encrypted secretsCredentials stored encrypted at rest
SSRF protectionsBlock unsafe destinations / schemes
Identity forwardingOptional end-user JWT/session to your API
Execution logsAudit what was called and when
Least privilegePrefer read-only methods in pilots

Deep dive: AI Agent Security and Secure Business Actions.

How Qefro implements Business Actions

  1. Create a Business Tool under a workspace (REST or OpenAPI import).
  2. Store credentials in the Admin Console (encrypted).
  3. Test the tool before enabling it for the assistant.
  4. On Customer AI, use identify() when your API needs the end user.
  5. Review tool execution logs after pilot traffic.

Platform reference: Business Actions.

Workflow

Add one safe Business Action

  1. Pick a read-only APIGET order status beats POST refunds for day one.
  2. Create the toolWorkspace → integrations/tools; encrypt secrets.
  3. Test in consoleVerify response shape and error handling.
  4. Enable for chatConfirm the assistant only calls when needed.
  5. Monitor logsWatch executions before expanding write tools.

Best practices

  • Separate customer-facing tools from internal-only tools via workspaces.
  • Never put long-lived admin secrets in the browser; use server-side tool credentials + optional end-user forwarding.
  • Document idempotency for any write action the model can trigger.
  • Fail closed: if authz fails, the assistant should explain limits — not invent success.

FAQ

Are Business Actions the same as “AI agents”?
Agent is a broad term. In Qefro, Business Actions are the concrete, auditable tool calls the assistant makes — not an unconstrained autonomous loop.
Do I need Business Actions to use Qefro?
No. Many teams start with knowledge-only Customer AI or Employee AI, then add tools when Q&A is stable.
Which plans include tools / WhatsApp?
Plan limits apply (for example WhatsApp on Growth+). Check current pricing on qefro.com/pricing and billing in the Admin Console.