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

# User ACL

An access control entry for a single ad account that specifies the authenticated user’s assigned roles.

```
object UserAcl
```

## Discussion

The `UserAcl` object represents a user’s access control entry for a single ad account. Each record returned by `GET /v1/acls` ([`Get User ACL`](/documentation/Apple-Ads-Platform-API/Get-user-ACLs)) corresponds to one ad account the authenticated user can access.

### Example

```json
{
  "adAccount": {
    "id": 123456789,
    "name": "AwayFinder",
    "orgId": 987654321
  },
  "roles": [
    "Admin"
  ]
}
```

## Roles Reference

An API Account Manager assigns roles through the Apple Ads UI, and you can’t set or change them via the API. Use the table below as a reference when interpreting the `roles` field returned by `GET /v1/acls` ([`Get User ACL`](/documentation/Apple-Ads-Platform-API/Get-user-ACLs)).

|Role                              |Access Level                                   |
|----------------------------------|-----------------------------------------------|
|`Admin`                           |Full read and write access to the ad account   |
|`API Account Manager`             |Full read and write access                     |
|`API Account Read Only`           |Read-only access to all resources              |
|`Limited Access: API Read & Write`|Read and write access to a limited resource set|
|`Limited Access: API Read Only`   |Read-only access to a limited resource set     |

---

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)