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

# EligibilityQueryRequest

The request body for querying app eligibility.

```
object EligibilityQueryRequest
```

## Discussion

The `EligibilityQueryRequest` object is the request body for the eligibility query endpoint. To filter, paginate, and sort the app eligibility records returned, use it.

The `filters` array accepts `QueryFilter` objects targeting filterable fields on the eligibility resource. Combine multiple filters to narrow results. For example, filter by `adamId` to check eligibility for a specific app.

The `filters` array supports the following fields:

|Field            |Description                                  |
|-----------------|---------------------------------------------|
|`adamId`         |The Adam ID of the app                       |
|`supplyPlacement`|The supply placement being checked           |
|`supplySource`   |The supply source being checked              |
|`countryOrRegion`|The country or region evaluated              |
|`deviceClass`    |The device class evaluated                   |
|`state`          |Eligibility state: `ELIGIBLE` or `INELIGIBLE`|

### Example

```json
{
  "filters": [
    {
      "field": "adamId",
      "operator": "EQUALS",
      "value": 123456789
    }
  ],
  "sorting": [
    {
      "field": "countryOrRegion",
      "order": "ASC"
    }
  ],
  "pagination": {
    "offset": 0,
    "pageSize": 20
  }
}
```

---

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)