v1

latestOpenAPI 3.0.32026-07-264955102.7 KB
Power Dialer

List current queue numbers

Returns the numbers in the Power Dialer queue currently assigned to the authenticated user, paginated and ordered by position ascending. data is the list of numbers (use page/size and read pagination to page through them); the queue key carries the queue's metadata (id, name, settings) without its numbers. To target a teammate's queue, pass either user_id or email as a query parameter (user_id wins when both are sent); the target must belong to the same team as the API key owner. When the user has no queue, the response is 200 with an empty data array, a zeroed pagination, and no queue (not a 404).

get/v2/api/dialing-queues/current

Query parameters

user_idstring
Example:usr-15BB68317A7F06F0C07A3BBD8F244102A6872220

ID of a teammate to read the queue for. Resolve teammate ids via GET /v2/api/users. Wins over email when both are provided.

emailstring email
Example:teammate@acme.com

Email of a teammate to read the queue for. Ignored when user_id is also supplied.

pageinteger
Example:1

1-indexed page number for the queue's numbers.

sizeinteger
Example:20

Number of numbers per page (max 100).

Response

A page of the current queue's numbers, ordered by position. Empty data array with zeroed pagination when the user has no queue.