Unifonic Call Queue Management API

The Call Queue Management API from Unifonic — 2 operation(s) for call queue management.

Operations 2

GET /providers/queues/{queueName} Retrieves a specific call queue #
POST /providers/queues/{queueName}/dequeue Dequeue the first caller in queue #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/unifonic-call-queue-management-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

unifonic-call-queue-management-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Unifonic Authenticate Call Management and Status Call Queue Management API
  description: Handles verifications with OTP to multiple channels
  contact:
    name: Unifonic Support
    url: support.unifonic.com/
    email: support@unifonic.com
  version: 2.0.0
servers:
- url: https://authenticate.cloud.api.unifonic.com
  variables: {}
security:
- authenticate-app-id: []
  Authorization: []
tags:
- name: Call Queue Management
paths:
  /providers/queues/{queueName}:
    get:
      operationId: getSpecificQueue
      summary: Retrieves a specific call queue
      description: This operation retrieves the details in a specific call queue
      tags:
      - Call Queue Management
      parameters:
      - name: queueName
        description: the queue name where the queue details is to be retrieved
        required: true
        in: path
        schema:
          type: string
      - name: appsId
        description: applicationId found on Unifonic Console
        required: true
        in: header
        schema:
          type: string
      responses:
        '200':
          description: Success
          content:
            application/json;charset=utf-8:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/QueuedCalls'
  /providers/queues/{queueName}/dequeue:
    post:
      operationId: dequeueFIFO
      summary: Dequeue the first caller in queue
      description: This operation creates a request to dequeue the caller who is currently the first in line towards another callerId which represents the service agent.
      tags:
      - Call Queue Management
      parameters:
      - name: redirectTo
        description: the callerId to redirect the call to
        required: true
        in: query
        schema:
          type: string
      - name: queueName
        description: Requested number of resources to be provided in response
        required: true
        in: path
        schema:
          type: string
      - name: appsId
        description: applicationId found on Unifonic Console
        required: true
        in: header
        schema:
          type: string
      responses:
        '201':
          description: Created
components:
  schemas:
    QueuedCalls:
      type: object
      properties:
        callId:
          type: string
          description: callId referencing this inbound call
        waitingTime:
          type: string
          example: '500'
          description: duration, in seconds, of the caller waiting in the queue
        position:
          type: string
          example: '1'
          description: position in the queue
        dateEnqueued:
          type: string
          example: Wed, 09 Mar 2022 09:08:42 +0000
          description: date and time when the call was added to queue
  securitySchemes:
    authenticate-app-id:
      type: apiKey
      name: x-authenticate-app-id
      in: header
    Authorization:
      type: apiKey
      description: Bearer Auth Token
      name: Authorization
      in: header
x-readme:
  explorer-enabled: true
  proxy-enabled: true