Custom Reports supports multiple authentication methods to securely connect to your REST APIs. Choose the required authentication by your API and enter the necessary credentials during datasource creation.
...
No Auth
This authentication type is utilized when the endpoint you are accessing does not require authentication. It lets you define the URL of your endpoints and modify it in a single location, eliminating the need to edit the report’s descriptor.
...
This is our default method and is common for transmitting a username and password pair. Within Atlassian’s ecosystem, you are required to provide your email address and an API token as the password.
Query parameters
Parameters allow you to define specific query details to refine the data fetched from the API.
Examples:
?status=active&dateRange=last30days
?limit=50&page=2
...
Headers
Headers are used to send additional information with your API requests, such as authentication details or content types.
Examples:
Authorization: Bearer <token>
Content-Type: application/json
...