Using the API
UniView Portal provides public APIs that customers can use to develop their own tools to access their Portal data. Our public API uses the OAuth 2.0 client credentials flow, but we generally support OIDC protocol. Auth-related endpoints can be discovered through https://login.backup.net/.well-known/openid-configuration.
To get started, create public API credentials as described below. For an example request, see Get public API access_token example. For a description of each public API, see UniView Portal's Public API.
To create public API credentials
- In the UniView Portal, click
. - In the API Access view, click + New.
- Enter a name for the credentials. Click Save.

- Copy and save the Client ID and Client Secret.
IMPORTANT Be sure to save the Client Secret in a safe place. You will not be able to access the Client Secret after you close this dialog.
Get public API access_token example
Send the following request to get the public API access_token, where <token> is Base64 of your UniView Portal client_id:client_secret string:
POST https://login.backup.net/connect/token
Content-Type: application/x-www-form-urlencoded
Authorization: Basic <token>
Accept: */*
Cache-Control: no-cache
Host: login.backup.net
Accept-Encoding: gzip, deflate, br
Connection: keep-alive
Content-Length: 36
grant_type: client_credentials

