CampaignUpdate

AdvertisingAnalyticsBusiness ManagementMarketingSocial Media

Properties

Name Type Description
name string Updated campaign name
status string
daily_budget string Updated daily budget
lifetime_budget string Updated lifetime budget
View JSON Schema on GitHub

JSON Schema

facebook-business-manager-campaignupdate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CampaignUpdate",
  "title": "CampaignUpdate",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Updated campaign name"
    },
    "status": {
      "type": "string",
      "enum": [
        "ACTIVE",
        "PAUSED",
        "DELETED",
        "ARCHIVED"
      ]
    },
    "daily_budget": {
      "type": "string",
      "description": "Updated daily budget"
    },
    "lifetime_budget": {
      "type": "string",
      "description": "Updated lifetime budget"
    }
  }
}