6 |
The Account Settings page contains a field for an API token. If no API token exists, click the Refresh
link to generate a new token. Once a token is created, authenticating API requests involves supplying the provided token via the Authorization
HTTP header. Below is an example using curl
:
14 | curl -H "Authorization: Token TOKEN" \ 15 | -X GET "{{help.protocol}}://{{help.host}}/api/boundary-results/"16 |