Skip to main content
PUT
/
v3
/
sequences
/
ai-sdr
/
{sequence_id}
/
approval-mode
Set the approval mode
curl --request PUT \
  --url https://api.reply.io/v3/sequences/ai-sdr/{sequence_id}/approval-mode \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "enabled": true,
  "approveAllPendingContacts": true
}
'

Authorizations

Authorization
string
header
required

Authenticate every request with a Bearer token. Pass your Reply API key in the Authorization header:

Authorization: Bearer <your-api-key>

Get your API key from the Reply dashboard: Settings → API Key.

Path Parameters

sequence_id
integer
required

Sequence id

Required range: x >= 1

Body

application/json

Sets the sequence's approval mode.

When disabling (enabled = false), approveAllPendingContacts may be provided to immediately approve all pending contacts. When enabling (enabled = true), approveAllPendingContacts must be omitted.

enabled
boolean
required

When true, AI-generated messages require human approval before sending

approveAllPendingContacts
boolean | null

When disabling approval mode, set to true to immediately approve all currently-pending contacts. Only accepted when enabled is false.

Response

Approval mode updated