CreativeEligibility
Eligibility state for an ad creative across supply sources and placements.
Declaration
object CreativeEligibilityProperties
| Name | Type | Description |
|---|---|---|
status | string | The overall eligibility status. Values: |
allowedGroups | CreativeEligibility.AllowedGroups | The supply sources and placements where this ad creative is eligible to serve. Read-only. |
blockedGroups | CreativeEligibility.BlockedGroups | The supply sources and placements where this ad creative is not eligible to serve, along with the blocking reason. Read-only.
|
Discussion
The CreativeEligibility object describes whether an ad creative is eligible to serve on specific supply sources and placements. It includes both allowed and blocked groups, providing granular visibility into where the ad creative can and cannot serve. To diagnose partial delivery restrictions without needing to check individual ad-level status fields, use this object.
Example
{
"status": "INELIGIBLE",
"allowedGroups": [
{
"supplyPlacement": ["APPSTORE_SEARCH_TAB", "APPSTORE_TODAY_TAB"],
"countryOrRegion": ["US", "GB"]
}
],
"blockedGroups": [
{
"supplyPlacement": ["APPSTORE_SEARCH_RESULTS"],
"countryOrRegion": ["CN"],
"reason": "APP_NOT_ELIGIBLE"
}
]
}