Skip to main content
POST
/
agent
/
queue
/
bulk
Bulk Update Call Queue
curl --request POST \
  --url https://api.getoutbox.ai/agent/queue/bulk/ \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "status": "all"
}
'

Authorizations

Authorization
string
header
required

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

Body

action
enum<string>
required
  • pause - pause
  • unpause - unpause
  • delete - delete
Available options:
pause,
unpause,
delete
status
string
default:all

all | scheduled | insufficient_funds | a specific queue status.

Minimum string length: 1

Response

200

Action applied to every matching queue item.