> ## Documentation Index
> Fetch the complete documentation index at: https://developer.audiohook.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Update campaign

## 🔄 Update a Campaign

Update an existing campaign.

### 📤 Request Example

```bash theme={null}
curl -X PATCH https://betaapi.audiohook.com/v2/companies/:companyUUID/campaigns \
  -H "Authorization: Bearer ${API_TOKEN}" \
  -H "Content-Type: application/json" \
  -d '{
    "request_headers": [
      { "name": "X-Request-Header", "value": "Header value" }
    ],
    "body": {
      "name": "Updated Campaign",
      "advertiser_id": "test-advertiser-uuid"
    }
  }'
```

### 🌐 HTTP Request

```http theme={null}
PATCH /v2/companies/:companyUUID/campaigns
```

***
