Contents

LegacyAppLimitedStatusReasonDetailsResponse

Response wrapper returning per-country or per-region limited-status reasons for legacy app campaigns.

Declaration

object LegacyAppLimitedStatusReasonDetailsResponse

Properties

NameTypeDescription
resultLegacyAppLimitedStatusReasonDetails

The response payload object. Read-only.

errorError

Error details if the request failed. Absent on success. See Error.

Discussion

The LegacyAppLimitedStatusReasonDetailsResponse object extends the standard Response envelope with a result object containing countryOrRegionLimitedStatusReasons. This map associates ISO 3166-1 alpha-2 country or region codes with arrays of reason strings that explain why ad delivery is limited in each market for legacy app campaigns.

An empty array for a given country or region means no limiting reasons are currently active there. Reason strings are human-readable labels corresponding to system conditions such as budget exhaustion, policy holds, or app-eligibility issues.

Example

{
  "result": {
    "countryOrRegionLimitedStatusReasons": {
      "US": [
        "APP_NOT_ELIGIBLE_SEARCHADS",
        "AD_GROUPS_LIMITED"
      ],
      "GB": [],
      "CA": [
        "APP_DOC_APPROVAL_PENDING"
      ]
    }
  }
}

See Also