Advanced API token settings
By default you can use API tokens using basic auth:
curl https://jira-test.example.com/rest/api/latest/project -u admin:<API_TOKEN>
or bearer auth with the header ksso-token:
curl https://jira-test.example.com/rest/api/latest/project -H "Authorization: ksso-token <API_TOKEN>"
By adding an additional key you can also set up with the key name that is compatible with your setup here (in the screenshot above this is set to the case-insensitive value bearer):
curl https://jira-test.example.com/rest/api/latest/project -H "Authorization: <ADDITIONAL_NAME> <API_TOKEN>"