Virola Web API - Authentication with Token

A Web API access token can be used to send Web API requests. This in an alternative to authenticating with a username and password, and can be useful if you need to execute individual API requests, as the token is sent alone with the request as a part of the request header.

To obtain a Web API token, open the Virola Client main menu and go to Tools -> Web API Access Token

Menu item to get Web API access token

The token links your user profile with the Web API calls you make, so all calls will be performed on your behalf.

Note icon

Note! Once you generate a new token, any previously generated token will stop working.

Example Web API request with token authentication, sent using curl

curl -k -X GET \
	-H "Authorization: Bearer TOKEN" \
	https://HOST:PORT/api/v1/server-health

All available Web API calls