Jira Service Management is getting a new navigation

We’re in the process of rolling out these changes and the documentation may not match your experience. Bear with us while we update it to reflect the new changes. More about navigating the new Jira

·

Create queues based on customer or details

To use this feature, turn on Customer and organization profiles on the Features page in Project settings.

Customer service management isn’t available in the Atlassian Government environment.

You can create queues for different types of customers or organizations by using Jira Query Language (JQL). These queues can be used to show requests from customers based on their location, support tier and more.

You must be an admin to create a new queue.

Create a queue based off customer or organisation details

  1. Next to Queues in your project, select More actions (), then Queue settings.

  2. Select Create new queue.

  3. Enter a name for your queue.

  4. In the Filter by section, select Switch to JQL to enter a JQL statement using the functions below.

  5. From the Columns section, update columns by dragging and dropping to the required location. This is the order the columns appear in your queue.

  6. Select Create.

Customer JQL functions

Syntax: customerDetail( )

Supported fields: Assignee, Reporter, Voter, Watcher, custom fields of type User

Supported operators: IN , NOT IN

Unsupported operators: = , != , ~ , !~ , > , >= , < , <= IS , IS NOT , WAS , WAS IN , WAS NOT IN, WAS NOT , CHANGED

Examples

  • Create a queue for all requests reported by customers in the APAC region:
    reporter in customerDetail("Region", "APAC")

  • Create a queue for all requests reported by customers who are not technical contacts
    reporter not in customerDetail("Role", "Technical Contact")

Organization JQL functions

Syntax: organizationDetail( )

Supported fields: Organizations

Supported operators: IN , NOT IN

Unsupported operators: = , != , ~ , !~ , > , >= , < , <= IS , IS NOT , WAS , WAS IN , WAS NOT IN, WAS NOT , CHANGED

Examples

  • Create a queue for all requests shared with organizations in the APAC region:
    organizations in organizationDetail("Region", "APAC")

  • Create a queue for all requests shared with organizations that are not in a platinum support level:
    organizations not in organizationDetail("Support level", "Platinum")

  • Create a queue for all unresolved requests shared with organizations that joined on 2023-08-24 where the date is in YYYY-MM-DD format: resolution = Unresolved AND Organizations in organizationDetail("Joined on", "2023-08-24")

  • If you have a multi-select dropdown that contains up to two values (option1 and option2 ), you can create a queue for all the organizations where both values are present:

    resolution = Unresolved AND Organizations in organizationDetail("Options", "option1") AND Organizations in organizationDetail("Options", "option2")

 

Still need help?

The Atlassian Community is here for you.