<!--
{
  "availability" : [
    "Apple Ads Platform API: 1.0.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "Apple-Ads-Platform-API",
  "identifier" : "/documentation/Apple-Ads-Platform-API/Get-advertiser-resources",
  "metadataVersion" : "0.1.0",
  "role" : "Web Service Endpoint",
  "symbol" : {
    "kind" : "Web Service Endpoint",
    "modules" : [
      "Apple Ads Platform API"
    ],
    "preciseIdentifier" : "rest:apple-ads-platform-api:get:advertiser-resources"
  },
  "title" : "Get Advertiser Resources"
}
-->

# Get Advertiser Resources

Retrieve the advertiser resources available to your organization, filtered by resource type.

## Discussion

Advertiser resources are brands and content providers available across your organization that you can delegate to an ad account. This endpoint returns all resources visible to the authenticated caller for the given `resourceType`. It takes no account-scoping parameter. The `resourceType` query parameter is required. Omitting it returns an error. See [`AdvertiserResourceType`](/documentation/Apple-Ads-Platform-API/AdvertiserResourceType) for supported values.

Each resource in the response identifies itself by its `resourceId`, `resourceType`, and `resourceName`. Use the returned `resourceId` values when creating or updating delegations on an ad account via [`Update Ad Accounts`](/documentation/Apple-Ads-Platform-API/PUT-ad-accounts-_id_).

## Payload Examples

**Get Advertiser Resources:**

### Request

```
GET https://api.ads.apple.com/v1/advertiser-resources?resourceType=CONTENT_PROVIDER
```

### Response

```json
{
 "result": [
   {
     "resourceId": "987654321",
     "resourceType": "CONTENT_PROVIDER",
     "resourceName": "AwayFinder"
   }
 ]
}
```

---

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)