---
title: "admGetIssueSecurityScheme"
canonical: "https://support.appfire.com/space/PSJC/514720797/admGetIssueSecurityScheme"
format: markdown
---
> Macro (aura-html)


## Description

> Macro (excerpt)
> 
> Retrieves the security scheme for a specific issue.

Retrieves the security scheme for a specific issue.

|  |  |  |  |
| --- | --- | --- | --- |
| **Syntax** | admGetIssueSecurityScheme(name, id) | **Package** | adm |
| **Alias** |  | **Pkg Usage** | issueSecurityScheme(name, id) |

## Parameters

| Parameter name | Type | Required | Description |
| --- | --- | --- | --- |
| name | string | Yes | The name of the scheme. |
| id | integer | Yes | The ID of the scheme. |

## Return Type

**[JIssueSecurityScheme](https://appfire.atlassian.net/wiki/spaces/PSJC/pages/435028065)**

## Example

```javascript
JIssueSecurityScheme isScheme = admGetIssueSecurityScheme("Default Issue Security Scheme", 11000);
runnerLog("Id: " + isScheme.id);
runnerLog("Name: " + isScheme.name);
runnerLog("Description: " + isScheme.description );
```

## See also

> Macro (contentbylabel)