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

# RecommendationState

The lifecycle state of a recommendation, indicating whether it’s available to act on or has already been accepted or rejected.

```
string RecommendationState
```

## Discussion

The `RecommendationState` tracks the advertiser’s response to a recommendation. Only recommendations in `AVAILABLE` state can be acted on. Applying or dismissing a recommendation moves it to `APPLIED` or `DISMISSED`, respectively, and creates a corresponding history record.

To retrieve only actionable recommendations, use the `state` filter in query requests:

```json
{
  "field": "state",
  "operator": "EQUALS",
  "value": [
    "AVAILABLE"
  ]
}
```

---

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)