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


|  |  |  |  |
| --- | --- | --- | --- |
| **Syntax** | admGetFilterOwner(filterId) | **Package** |  |
| **Alias** |  | **Pkg Usage** |  |

## Description

> Macro (excerpt)
> 
> Retrieves the filter owner.

Retrieves the filter owner.

## Parameters

| Parameter name | Type | Required | Description |
| --- | --- | --- | --- |
| filterId | number | Yes | The filter id. |

## Return Type

**[JUser](https://appfire.atlassian.net/wiki/spaces/PSJ/pages/15487117)**

Returns the user that owns the filter.

## Example

```
number filterId = 10000;
JUser user = admGetFilterOwner(filterId);
runnerLog("The user is :"+user);
```

## See also

> Macro (contentbylabel)