<!--
{
  "availability" : [
    "Apple Ads Platform API: 1.0.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "Apple-Ads-Platform-API",
  "identifier" : "/documentation/Apple-Ads-Platform-API/Org",
  "metadataVersion" : "0.1.0",
  "role" : "Object",
  "symbol" : {
    "kind" : "Object",
    "modules" : [
      "Apple Ads Platform API"
    ],
    "preciseIdentifier" : "data:apple-ads-platform-api:Org"
  },
  "title" : "Org"
}
-->

# Org

Represents an organization in the Apple Ads system.

```
object Org
```

## Discussion

An `Org` is the top-level entity that owns ad accounts, manages users, and groups all advertising activity under a single billing relationship. It’s the root entity in the account hierarchy, with ad accounts, campaigns, and user memberships all existing beneath it.

The `systemStatus` field reflects whether the org is `ACTIVE` or `INACTIVE`. An inactive org prevents all campaigns under it from serving. Check `systemStatusReasons` for the specific cause.

To discover which organizations the current API token can access, use `GET /v1/acls` ([`Get User ACL`](/documentation/Apple-Ads-Platform-API/Get-user-ACLs)). Then, to retrieve full details, use `GET /v1/orgs/{orgId}` ([`Get Org by ID`](/documentation/Apple-Ads-Platform-API/GET-orgs-_id_)).

### Example

```json
{
  "name": "AwayFinder",
  "currency": "USD",
  "timezone": "America/Los_Angeles",
  "paymentModel": "PAYG",
  "systemStatus": "ACTIVE",
  "systemStatusReasons": [],
  "id": 123456789
}
```

## Topics

### Type Aliases

[`string Org.Currency`](/documentation/Apple-Ads-Platform-API/Org/Currency-data.typealias)

The currency used by the organization.

[`string Org.PaymentModel`](/documentation/Apple-Ads-Platform-API/Org/PaymentModel-data.typealias)

The payment model set through Apple Ads.

[`string Org.SystemStatus`](/documentation/Apple-Ads-Platform-API/Org/SystemStatus-data.typealias)

System-derived operational status of the organization.

[`string Org.SystemStatusReasons`](/documentation/Apple-Ads-Platform-API/Org/SystemStatusReasons-data.typealias)

Reasons that can cause the organization’s system status to be `INACTIVE`.

---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)