Glance Authorization API (1.0.0)

Download OpenAPI specification:

API documentation for the Glance Authorization Service. This endpoint supports multiple authentication methods.

Authorization

Authorize Service Request

Authenticates a user and authorizes them for a specific Glance service. Generates a JSON Web Token (JWT) and routing data.

This endpoint accepts two different request body formats:

  1. Standard Authentication: Using a Glance username and password.
  2. Partner Authentication: Using a Login Key, Partner ID, and Partner User ID.
query Parameters
service
string
Example: service=webservices

The requested service type.

duration
integer
Example: duration=120

The requested duration of the authorization in minutes.

site
string
Example: site=production

The site identifier.

Request Body schema: application/json
required
One of
username
required
string

The user's Glance Address or username.

password
required
string

The user's password.

Responses

Request samples

Content type
application/json
Example
{
  • "username": "user.name",
  • "password": "SuperSecretPassword123!"
}

Response samples

Content type
application/json
{
  • "VServer": null,
  • "applicationSettings": null,
  • "authTokeExp": "2026-03-12T20:41:55.6484735Z",
  • "authToken": "eyJhbGciOiJIUzI1NiIsInR5cCI...",
  • "coloSelectUrl": null,
  • "glanceAddress": null,
  • "groupId": 25542,
  • "gssnId": "935203.1773342715.9ZtHvw1uyCIEjorGe7k1qfeuGQiV5pkMsxu-5Q5OQiM.25542",
  • "isTrial": false,
  • "message": null,
  • "planTimeout": 0,
  • "planTitle": null,
  • "privilegeString": "gssnId:935203.1773342715.9ZtHvw1uyCIEjorGe7k1qfeuGQiV5pkMsxu-5Q5OQiM.25542;personId:935203;newportalaccess:on;groupowner:on",
  • "service": 9
}