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.


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