---
title: "getAllOrganizationIds (Power Scripts)"
canonical: "https://support.appfire.com/space/PSJ/15483917/getAllOrganizationIds%20(Power%20Scripts)"
format: markdown
---
> Macro (aura-html)


|  |  |  |  |
| --- | --- | --- | --- |
| **Syntax** | getAllOrganizationIds() | **Package** |  |
| **Alias** |  | **Pkg Usage** |  |

## Description

> Macro (excerpt)
> 
> Returns the Ids of all Service Desk organizations.

Returns the Ids of all Service Desk organizations.

## Return Type

**Number []**

Returns a number array of organization Ids.

## Examples

### Example 1

```
return getAllOrganizationIds();
```

Result: 11|12|13|14.

### Example 2

```
for(number id in getAllOrganizationIds()) {
    runnerLog(getOrganizationNameById(id));
}
```

Result: "Company A"
            "Company B"
            "Company C"

## See also

> Macro (contentbylabel)