Skip to main content
PATCH
/
v2
/
api
/
dialing-queues
/
current
Upsert current queue
curl --request PATCH \
  --url https://api.withallo.com/v2/api/dialing-queues/current \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "Cold Calls"
}
'
{
  "data": {
    "id": "<string>",
    "name": "<string>",
    "creator_id": "<string>",
    "assignee_id": "<string>",
    "voicemail_handling": "SKIP",
    "do_not_disturb": "ENABLED",
    "numbers": [
      {
        "number_to": "<string>",
        "position": 123,
        "created_at": "2023-11-07T05:31:56Z",
        "updated_at": "2023-11-07T05:31:56Z",
        "call_start_date": "2023-11-07T05:31:56Z",
        "call_id": "<string>",
        "routing_result": "FAILED",
        "sync_status": "NOT_SYNCED",
        "detected_outbound_voicemail": true,
        "not_reached_destination_reason": "BUSY",
        "voicemail_left": true
      }
    ],
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z"
  }
}

Documentation Index

Fetch the complete documentation index at: https://help.withallo.com/llms.txt

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

Authorizations

Authorization
string
header
required

Body

application/json

Creates or updates the queue config. All fields are optional — only the fields you supply are touched.

name
string | null

New queue name (1–255 characters)

Required string length: 1 - 255
voicemail_handling
enum<string> | null

How the Power Dialer reacts when the call hits voicemail.

Available options:
SKIP,
NO_SKIP
do_not_disturb
enum<string> | null

Silence inbound calls while running the queue.

Available options:
ENABLED,
DISABLED

Response

Updated queue

data
object

A user's Power Dialer queue with its configuration and numbers.