Get Provisioning


This request returns a list of provisioning profiles

Resource

GET /provisioning

Parameters

Name Type Description

include

String
A comma seperated list of fields to include in the results. See Common Search Parameters

Include fields to the result. include=[included fields]
-phoneType → provisionig phone type
-macAddress → provisioning phone MAC address
-phones → provisioning phones(accounts)

Payload

None

Context

Authorization

User

Errors

Example

Request
GET https://xelion.nl/api/v1/master/provisioning
Response
{
    "data": [
        {
            "object": {
                "commonName": "Yealink Test",
                "oid": "1732584",
                "objectType": "XCCPhoneProvisioning"
            },
            "links": [
                {
                    "rel": "self",
                    "method": "GET"
                }
            ]
        },
        {
            "object": {
                "commonName": "Snom",
                "oid": "1732790",
                "objectType": "XCCPhoneProvisioning"
            },
            "links": [
                {
                    "rel": "self",
                    "method": "GET"
                }
            ]
        },
        {
            "object": {
                "commonName": "HELPPROV",
                "oid": "1733298",
                "objectType": "XCCPhoneProvisioning"
            },
            "links": [
                {
                    "rel": "self",
                    "method": "GET"
                }
            ]
        }
    ],
    "meta": {
        "links": [
            {
                "rel": "refresh",
                "href": "http://10.78.40.183:8080/api/v1/master/provisioning",
                "method": "GET"
            },
            {
                "rel": "next",
                "href": "http://10.78.40.183:8080/api/v1/master/provisioning?after=1733298",
                "method": "GET"
            },
            {
                "rel": "previous",
                "href": "http://10.78.40.183:8080/api/v1/master/provisioning?before=1732584",
                "method": "GET"
            }
        ],
        "paging": {
            "previousId": "1732584",
            "nextId": "1733298"
        }
    }
}