Skip to main content
GET
/
v3
/
ai-sdr
/
approvals
List pending approvals
curl --request GET \
  --url https://api.reply.io/v3/ai-sdr/approvals \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "sequenceId": 123,
      "contactId": 123,
      "contactFullName": "<string>",
      "contactTitle": "<string>",
      "contactCompany": "<string>",
      "sequenceName": "<string>",
      "channel": "email",
      "stepId": 123,
      "messageSubject": "<string>",
      "messageContent": "<string>",
      "isRegenerating": true,
      "createdAt": "2023-11-07T05:31:56Z"
    }
  ],
  "hasMore": true
}

Documentation Index

Fetch the complete documentation index at: https://docs.reply.io/llms.txt

Use this file to discover all available pages before exploring further.

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.

Query Parameters

top
integer

Maximum number of items to return (default 25, max 1000)

skip
integer

Number of items to skip

sequenceId
integer

Filter by sequence id

userId
integer

Filter by approval owner (user id)

channel
enum<string>

Filter by message channel

Available options:
email,
linkedIn
sortMode
enum<string>

Order of returned items (default newestFirst)

Available options:
newestFirst,
oldestFirst

Response

Paginated list of pending approvals

items
object[]
hasMore
boolean