Licensing API

The Incredibly Easy Way To Generate Sangoma License Files!

 Back

The Sangoma license API is the quickest and easiest way to generate netboard license files. Consisting of just three simple http POST requests you can be up and running in few minutes with no account or approval needed.

To generate a NetBorder license file using API, you are required to have a security token provided by sangoma.

Response: 200 OK, application/json
{
                "request_token":"some_token_given_by_sangoma",
                "user_key":"some_key_given_by_sangoma",
                ...,
            }

You can check if a key is still valid, using this service. Use the API URL followed by:

/key/view
Response: 200 OK, application/json
                {
"activity-history": [
    {
        "activity": "created",
        "data": null,
        "date": "2015-10-23 14:26:20"
    },
    {
        "activity": "hardware-bind",
        "data": "{\"media-mac-list\": \"mac\": \"00:11:22:33:44:56\"}",
        "date": "2015-10-23 14:26:32.492922"
    }
],
"channels": "12",
"date-begin": null,
"date-end": null,
"product": "SBC-ENT-HYBRID",
"result": true,
"serial": null,
"state": "Bounded"
}
            
 Back