Comment on page
Authentication
Connect to the REST API
The REST API is available as BETA on the Jira Cloud platform, and scheduled to be included in the upcoming Data Center release.
The REST API allows you to interact with Ativo Programs interactively. Use this API to extract configuration data that has been saved in Ativo itself.
Jira issue data (including custom fields ) is never processed in the Ativo backend, and hence not available via the API. Use the Jira API instead to access Jira issue data.
Jira admins can create an API authentication token. Go to Jira settings > Manage apps > Ativo Programs > REST API and click on "Create" button.

Choose a name for the token, and click submit.
The generated token will be shown. Make sure to copy the token, as you will not be able to see it again afterwards.

Jira admins can revoke tokens. They can do so for all tokens, including tokens from other Jira admins.
Click on the revoke button next to the token. The token is revoked immediately.

Most REST API clients provide a mechanism to supply an authorization token.
For example, you can supply the
-H
option to curl
. The example below will provide the index list of Ativo teams.curl https://cloud-api.ativo.io/rest/api/1/team
-H "Authorization: Bearer <token>"
Last modified 1mo ago