---
title: Jira users
description: Retrieve individual or all users from your Jira Cloud workspace using this activity.
category: Application
tags: [jira, users, integration, account]
---

# Jira users

## Description

The **Jira Users** entity represents user accounts in a Jira workspace, including details such as name, email, role, account ID, and activity status. It is primarily used for managing access, assigning tasks, and tracking user-related actions within Jira projects.

The **Jira Users** activity enables you to fetch user information from your Jira Cloud site. You can retrieve details of a specific user by their Account ID, or get a list of all users in the site.

This activity supports:

- Fetching details of a specific user
- Retrieving a full list of users within the Jira instance

> **Use case**: Use this activity to synchronize Jira user data into your internal systems, verify active users, or drive permissions and workflow routing based on user details.

---

## Input

_Not Applicable_

## Output

| Output Type | Format | Description                              |
| ----------- | ------ | ---------------------------------------- |
| `Data`      | JSON   | Single or multiple user details as JSON. |

---

## Configuration Fields

| Field Name   | Description                                              |
| ------------ | -------------------------------------------------------- |
| `Connection` | Select a valid Jira Cloud connection.                    |
| `CloudId`    | Site name or cloud identifier of your Jira workspace.    |
| `Operation`  | Choose between `Get` and `GetAll` to fetch user details. |
| `AccountId`  | Jira Account ID (required only for `Get` operation).     |

---

## Sample Input

| Operation   | Required Fields | Example Input                                                |
| ----------- | --------------- | ------------------------------------------------------------ |
| **Get**     | `AccountId`     | <table><tr><td>AccountId</td><td>abc123xyz</td></tr></table> |
| **Get All** | _None_          | _(No input required)_                                        |

---

## Sample Configuration

| Field             | Value                       |
| ----------------- | --------------------------- |
| `connection.id`   | `jira-conn-01`              |
| `connection.name` | `Jira Prod`                 |
| `cloudId`         | `your-domain.atlassian.net` |
| `operation`       | `Get`                       |
| `accountId`       | `abc123xyz`                 |

---

## Sample Output

| accountId | displayName | email           | active | timeZone     | locale |
| --------- | ----------- | --------------- | ------ | ------------ | ------ |
| abc123xyz | Jane Doe    | jane@yourco.com | true   | Asia/Kolkata | en-US  |
| def456uvw | John Smith  | john@yourco.com | true   | UTC          | en-GB  |
