Skip to main content
GET
/
workflow
/
{workflow_id}
/
actions
/
{action_id}
/
waiting
List Contacts Waiting at Action
curl --request GET \
  --url https://api.getoutbox.ai/workflow/{workflow_id}/actions/{action_id}/waiting/ \
  --header 'Authorization: Bearer <token>'
{
  "action_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "action_type": "<string>",
  "action_order": 123,
  "waiting_contacts": [
    {}
  ],
  "total": 123,
  "page": 123,
  "limit": 123,
  "total_pages": 123
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

action_id
string<uuid>
required
workflow_id
string<uuid>
required

Query Parameters

limit
integer
default:10

Capped to 100.

page
integer
default:1

Response

action_id
string<uuid>
required
action_type
string
required
action_order
integer
required
waiting_contacts
object[]
required

Each row: contact info, execution id/status, wait_until, expected_to_move_at.

total
integer
required
page
integer
required
limit
integer
required
total_pages
integer
required