Getting Authorization Tokens
The Veeam Service Provider Console REST API authorization with Swagger UI involves the following procedures:
- Obtain a pair of tokens:
- On the Veeam.AC.WebAPI page, expand the Accounts resource and click POST /token.
- Click the Try it out! button.
- In the username and password fields, specify the credentials of a user with the Veeam Service Provider Console Portal Administrator privileges.
- Click Execute.
Wait for the response from the server. A successfully completed operation returns the 200 OK response code and an access and a refresh tokens in the response body.
- Save the refresh token locally for further use.
- Make sure that the access key is automatically inserted in the api_key field at the top of the page.
- To validate the access token, click Explore.
- When the access token expires, use the refresh token:
- On the Veeam.AC.WebAPI page, expand the Accounts resource and click POST /token.
- From the grant_type drop-down list, select refresh_token.
- In the refresh_token field, insert the refresh token saved locally.
- Click Try it out.
Wait for the response from the server. A successfully completed operation returns the 200 OK response code and a new pair of tokens in the response body.
- When you finish working with the Veeam Service Provider Console REST API:
- On the Veeam.AC.WebAPI page, expand the Accounts resource and click POST /accounts/logout.
- Click Try it out.
Wait for the response from the server. A successfully completed operation returns the 200 OK response code and the You have been logged out message in the response body.
Related Topics