AdSetUpdate

AdvertisingAnalyticsBusiness ManagementMarketingSocial Media

Properties

Name Type Description
name string
status string
daily_budget string
lifetime_budget string
targeting object
bid_amount integer
end_time string
View JSON Schema on GitHub

JSON Schema

facebook-business-manager-adsetupdate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AdSetUpdate",
  "title": "AdSetUpdate",
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "status": {
      "type": "string",
      "enum": [
        "ACTIVE",
        "PAUSED",
        "DELETED",
        "ARCHIVED"
      ]
    },
    "daily_budget": {
      "type": "string"
    },
    "lifetime_budget": {
      "type": "string"
    },
    "targeting": {
      "type": "object"
    },
    "bid_amount": {
      "type": "integer"
    },
    "end_time": {
      "type": "string",
      "format": "date-time"
    }
  }
}