# Tutorial: Configure a generic task server

CLion supports [integration with many task trackers](managing-tasks-and-context.html) out of the box. However, if you use a tracker that CLion does not support yet, you can still integrate it configuring a so-called generic server.

This tutorial describes how to:

* Connect to JIRA Cloud as a generic server.

* Get the list of issues assigned to you.

* For each issue, get its ID, title, description, date and time when the issue was created and updated.

Before you start configuring a connection to your tracker, note that CLion:

* Supports only services with REST API.

* Supports either [Basic HTTP authentication](https://en.wikipedia.org/wiki/Basic_access_authentication) or sending preliminary requests to the server.

* Supports GET and POST requests.

* Does not support pagination in server responses.

Procedure: Specify server URL and credentials

1. Press `Ctrl+Alt+S` (Windows), `⌘ Comma` (macOS), `⌘ Comma` (IntelliJ IDEA Classic (macOS)), `⌘ Comma` (macOS System Shortcuts), `Ctrl+Alt+S` (XWin), `Ctrl+Alt+S` (GNOME), `Ctrl+Alt+S` (KDE), `Ctrl+Alt+S` (Emacs), `Ctrl+Alt+S` (Sublime Text), `⌘ Comma` (Sublime Text (macOS)), `⌘ Comma` (Xcode), `Ctrl+Alt+S` (Visual Studio), `⌘ Comma` (Visual Studio (macOS)), `Ctrl+Alt+S` (ReSharper), `⌘ Comma` (ReSharper (macOS)), `Ctrl+Alt+S` (QtCreator), `⌘ Comma` (QtCreator (macOS)), `Ctrl+Alt+S` (NetBeans), `Ctrl+Alt+S` (Eclipse), `⌘ Comma` (Eclipse (macOS)) to open settings and then select `Tools | Tasks | Servers`.

2. Click ![the Add button](https://resources.jetbrains.com/help/img/idea/2026.2/app.expui.general.add.svg) and select Generic.

3. On the General tab, specify the URL of your task tracker and connection credentials.

In the Username field, type your email address.

In the Password field, enter your [Atlassian API token](https://confluence.atlassian.com/cloud/api-tokens-938839638.html).

4. Select the Use HTTP authentication checkbox at the bottom of the dialog.

Procedure: Configure the server settings

1. Switch to the [Server Configuration](managing-tasks-and-context.html#server-configuration-tab-controls) tab.

Note that the Login URL field will be disabled, as you are using HTTP authentication.

2. In the Tasks List URL, enter the URL for getting issues from the server. You can use variables or enter the full URL:

`{serverUrl}/rest/api/3/search/` or

`https://serverurl.atlassian.net/rest/api/3/search/`

The `{serverUrl}` is a variable that stands for the URL you have specified on the General tab.

3. Add the `jql?fields=*all&jql={JQL_Query}` expression to your task list URL: `{serverUrl}/rest/api/3/search/jql?fields=*all&jql={JQL_Query}`.

> **Tip:**
> You can use code completion in the Login URL, Task List URL and Single Task URL fields.

4. Click Manage Template Variables at the bottom of the dialog to configure the `JQL_Query` variable.

5. Click ![the Add button](https://resources.jetbrains.com/help/img/idea/2026.2/app.expui.general.add.svg) and in the new field, specify the variable name `JQL_Query` and add its value `assignee = currentUser() AND resolution = unresolved`.

This will let you get unresolved issues assigned to you.

6. Click OK.

> **Note:**
> All variables specified in URL fields, except `{serverUrl}`, are encoded with `application/x-www-form-urlencoded` by default.

> **Tip:**
> For more information about advanced searches, refer to [Advanced searching - fields reference](https://confluence.atlassian.com/jirasoftwarecloud/advanced-searching-fields-reference-764478339.html).

Procedure: Configure the response type and specify selectors

1. In the Server Configuration dialog, select the JSON response type.

2. Specify selectors in the table to get IDs and titles of issues and their description. You can also get the date and time when issues were created and updated:

* tasks: `$.issues`

* id: `key`

* summary: `fields.summary`

* description: `fields.description`

* updated: `fields.updated`

* created: `fields.created`

3. Click Test to make sure all parameters are configured correctly.

Procedure: Upload issues from the server

1. Click the task list and select Open Task. CLion will load from the server all issues that match your configuration.

2. Select the necessary issue from the list.

3. Press `Ctrl+Q` (Windows), `F1` (macOS), `⌃ J` (IntelliJ IDEA Classic (macOS)), `⌘ I` (macOS System Shortcuts), `Ctrl+Q` (XWin), `Ctrl+Q` (GNOME), `Ctrl+Q` (KDE), `Ctrl+Q` (Emacs), `Ctrl+Q` (Sublime Text), `Ctrl+Q` (Sublime Text (macOS)), `⌘ ⌃ ⇧ /` (Xcode), `Ctrl+K, I` (Visual Studio), `⌘ K, I` (Visual Studio (macOS)), `Ctrl+Q` (ReSharper), `⌃ Q` (ReSharper (macOS)), `Ctrl+Q` (QtCreator), `Ctrl+Q` (QtCreator (macOS)), `Ctrl+Q` (NetBeans), `Alt+Middle-Click` (Eclipse), `⌥ Middle-Click` (Eclipse (macOS)) to open issue description and make sure all required details are obtained.

## See also

### External Links

[Basic Authentication](https://en.wikipedia.org/wiki/Basic_access_authentication) [JSONPath](http://goessner.net/articles/JsonPath/)

