---
title: "isUserAdmin"
canonical: "https://support.appfire.com/space/PSJ/15484530/isUserAdmin"
format: markdown
---
> Macro (aura-html)


|  |  |  |  |
| --- | --- | --- | --- |
| **Syntax** | isUserAdmin(username) | **Package** |  |
| **Alias** |  | **Pkg Usage** |  |

## Description

> Macro (excerpt)
> 
> Determines if a provided user has administration privileges in the current Jira environment.

Determines if a provided user has administration privileges in the current Jira environment.

## Parameters

| Parameter name | Type | Required | Description |
| --- | --- | --- | --- |
| username | String | Yes | The username of the user to validate. |

## Return Type

**Boolean (true/false)**

Returns "true" if the user is a valid administration user and "false" otherwise.

## Example

```
runnerLog(isUserAdmin(currentUser());

runnerLog(isUserAdmin("jsmith"));
```

## See also

> Macro (contentbylabel)