v1

latestOpenAPI 3.1.02026-07-26374172.5 KB
Campaigns

Update an existing campaign

patch/measurement/campaigns/{id}

Path parameters

idstring required
Example:0123456789abcdef

Request body

Example request

{
  "measurementCampaign": {
    "name": "Brand Campaign Q2",
    "startDate": "2024-03-01",
    "endDate": "2024-03-01"
  }
}

Response

OK

Example response

{
  "measurementCampaign": {
    "id": "0123456789abcdef",
    "name": "Brand Campaign Q2",
    "startDate": "2024-03-01",
    "endDate": "2024-03-01",
    "customEvents": [
      {
        "id": 1,
        "label": "Signup",
        "pattern": "example.com/sign_up"
      }
    ],
    "pixel": {
      "id": "0123456789abcdef",
      "name": "Attribution Pixel",
      "brand": {
        "crmBrandId": "brand_0123456789abcdef",
        "name": "ACME Corp., Inc."
      }
    },
    "ads": [
      {
        "id": "0123456789abcdef",
        "name": "The Pod Show - Mid-Roll",
        "uid": "ad-123-456",
        "podcast": {
          "id": 1,
          "title": "The Pod Show"
        }
      }
    ]
  }
}