...
Get the template details from the Abiquo API
Create the replacement data object
Replace the file using the Appliance manager API
...
2.
...
Log in to the API
...
and obtain a token
If you wish to use token authentication, which is more secure and required for 2FA, do these steps.
To obtain an authorization token, send a GET request to the API login resource.
Use basic authentication and get the token from the X-Abiquo-Token header.
Code Block |
---|
curl --verbose -X GET "https://abiquo.example.com:443/api/login" -u adminuser:password -k | jq . |
Or if If you are using 2FA, you can get the 2FA verification code in the usual way (by email or from Google Authenticator).
...