Alianza Device Provisioning API

The Device Provisioning API from Alianza — 2 operation(s) for device provisioning.

Operations 2

GET /v2/partition/{partitionId}/deviceprovisioning/{macAddress} Retrieve provisioning information for a specified device #
GET /v2/partition/{partitionId}/deviceprovisioning/account/{accountid}/device/{deviceid} Retrieve provisioning information for a specified deviceid #

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/alianza-device-provisioning-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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

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

OpenAPI Specification

alianza-device-provisioning-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Alianza Device Provisioning API
  version: '2'
  description: 'Operations tagged Device Provisioning across 2 of this provider''s published API definitions: alianza-apidocs-swagger2-original.json, alianza-device-provisioning-api-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://api.d2.alianza.com
  description: Base URL reconciled from _original
tags:
- name: Device Provisioning
paths:
  /v2/partition/{partitionId}/deviceprovisioning/{macAddress}:
    get:
      tags:
      - Device Provisioning
      summary: Retrieve provisioning information for a specified device
      description: Provisioning Information
      operationId: getProvisioningByMacAddress
      parameters:
      - name: X-AUTH-TOKEN
        in: header
        required: false
        schema:
          type: string
      - name: partitionId
        in: path
        description: ID of partition
        required: true
        schema:
          type: string
      - name: macAddress
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: successful operation
          responseSchema:
            originalRef: RequestedDeviceX
            $ref: '#/components/schemas/RequestedDeviceX'
          content:
            application/json:
              schema:
                originalRef: RequestedDeviceX
                $ref: '#/components/schemas/RequestedDeviceX'
        '400':
          description: User not found, partition not found or lack of permissions
        '404':
          description: Device Not found
      responsesObject:
        '200':
          description: successful operation
          responseSchema:
            originalRef: RequestedDeviceX
            $ref: '#/components/schemas/RequestedDeviceX'
          schema:
            originalRef: RequestedDeviceX
            $ref: '#/components/schemas/RequestedDeviceX'
        '400':
          description: User not found, partition not found or lack of permissions
        '404':
          description: Device Not found
  /v2/partition/{partitionId}/deviceprovisioning/account/{accountid}/device/{deviceid}:
    get:
      tags:
      - Device Provisioning
      summary: Retrieve provisioning information for a specified deviceid
      description: Provisioning Information
      operationId: getProvisioningByMacAddress_1
      parameters:
      - name: X-AUTH-TOKEN
        in: header
        required: false
        schema:
          type: string
      - name: partitionId
        in: path
        description: ID of partition
        required: true
        schema:
          type: string
      - name: accountid
        in: path
        required: true
        schema:
          type: string
      - name: deviceid
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: successful operation
          responseSchema:
            originalRef: RequestedDeviceX
            $ref: '#/components/schemas/RequestedDeviceX'
          content:
            application/json:
              schema:
                originalRef: RequestedDeviceX
                $ref: '#/components/schemas/RequestedDeviceX'
        '400':
          description: Device not found, partition not found or lack of permissions
        '404':
          description: Device Not found
      responsesObject:
        '200':
          description: successful operation
          responseSchema:
            originalRef: RequestedDeviceX
            $ref: '#/components/schemas/RequestedDeviceX'
          schema:
            originalRef: RequestedDeviceX
            $ref: '#/components/schemas/RequestedDeviceX'
        '400':
          description: Device not found, partition not found or lack of permissions
        '404':
          description: Device Not found
components:
  schemas:
    RequestedDeviceX:
      type: object
      properties:
        macAddress:
          type: string
        deviceType:
          type: string
        lineCount:
          type: integer
          format: int32
        dialPlan:
          type: string
        hasFaxEnabledLine:
          type: boolean
        lines:
          type: array
          items:
            originalRef: RequestedDeviceLineX
            $ref: '#/components/schemas/RequestedDeviceLineX'
    RequestedDeviceLineX:
      type: object
      properties:
        macAddress:
          type: string
        lineNumber:
          type: integer
          format: int32
        userId:
          type: string
        displayName:
          type: string
        sipUsername:
          type: string
        sipPassword:
          type: string
        dialPlan:
          type: string
        server:
          type: string
        serverPort:
          type: string
        emergencyNumber:
          type: string
        enabled:
          type: boolean
        faxEnabled:
          type: boolean
x-refined-from:
- alianza-apidocs-swagger2-original.json
- alianza-device-provisioning-api-openapi.yml