All operations require an "Authorization" request header in the form:
Authorization: Bearer token
where token is obtained by sending an authorization token request: POST /api/v4/authorize
When you send that request from this page, the token is automatically extracted from the response to here:
which will be inserted into every subsequent request sent from this page.
If a temporary installer password has been set, all operations require an Authorization header in the form:
Authorization: Basic encoded_pw
where encoded_pw is the base64-encoded value of install-temp:installer_password.
If an installer password has not been set, you can optionally set one using the POST /api/v4/install/set-temporary-install-password API.
If an installer password has been set, enter it here. The Authorization header will then then be automatically inserted into every API request sent from this page.