Skip to content
Reponse.ai LogoDocs
DocsAPISDKsGuides

Search Documentation

Search for an article...

Getting Started

  • Overview
  • Architecture
  • Installation
  • Authentication
  • First Request

Loyalty & Gift Cards

  • Loyalty — Balance
  • Loyalty — Redeem
  • Loyalty — Referral

Tickets & Support

  • Tickets — List
  • Tickets — Create
  • Tickets — Reply

SDKs

  • SDK Overview
  • TypeScript SDK
  • React Hooks

Guides

  • Chat Widget
  • Shopify Sync
  • Reponse in Shopify Admin
  • Loyalty Program
  • Klaviyo Integration
  • Custom Domains
  • AI Engines
  • MCP Server

Webhooks

  • Webhooks Overview
  • Events Reference
  • Shopify Webhooks
  • Stripe Webhooks
  • Reviews (Stamped / Trustpilot)
  • Logistics
  • Email Inbound

Resources

  • Environment Variables
  • Rate Limits
  • Changelog
DocsPlatformApprovals — Execute

Approvals — Execute

Execute a pending approval (human-in-the-loop action).

1 min read/Last updated Sep 9, 2026
On this page

Overview

Approves and runs a pending agent action (for example, issuing a refund or cancelling an order). The approval must be in a pending state.

Authentication

This endpoint requires a Bearer token. Include your workspace API key in the `Authorization` header.

Authorization: Bearer <your_api_key>

Request

**POST** `/v1/approvals/:approvalId/execute`

Path parameters

NameTypeRequiredDescription
approvalIdstring (uuid)✅The approval ID.

Response

json
{ "executed": true, "approval": { "id": "appr_uuid", "status": "executed" } }

SDK example

typescript
await reponse.approvals.execute({ path: { approvalId } });

Errors

StatusMeaning
400Approval is not pending.
404Approval not found.