PUT api/campaigns/{id}
Updates the given .
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
CampaignDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| CreationDate | date |
None. |
|
| Name | string |
None. |
|
| ManagerGroupId | globally unique identifier |
None. |
|
| CompanyIds | Collection of globally unique identifier |
None. |
|
| IsDeleted | boolean |
None. |
|
| BrandIds | Collection of globally unique identifier |
None. |
|
| ProductIds | Collection of globally unique identifier |
None. |
|
| CampaignTypeId | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": "6126f89e-514a-43de-96d5-475667fc153c",
"CreationDate": "2026-01-09T14:10:51.3455845+00:00",
"Name": "sample string 3",
"ManagerGroupId": "b5cd80e8-63f6-4a63-b716-88fed8752b04",
"CompanyIds": [
"d7e24cc1-5400-4a7e-b3d5-45a928d86806",
"a8ece4de-8c77-4bf5-af41-eafd6aa2849a"
],
"IsDeleted": true,
"BrandIds": [
"ac497a64-a2b5-4f01-9568-260c3e307376",
"6f4b2bd8-c898-4309-99f9-8180d07085e5"
],
"ProductIds": [
"f5d7df00-e1aa-4324-8d8a-aedb110dd18e",
"8a95f73d-921c-40fe-b866-3f93c74f6e39"
],
"CampaignTypeId": "c131db44-be54-46fd-8471-c0f08721bb7b"
}
application/xml, text/xml
Sample:
<CampaignDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aardvark.EventManagement.Models">
<BrandIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>ac497a64-a2b5-4f01-9568-260c3e307376</d2p1:guid>
<d2p1:guid>6f4b2bd8-c898-4309-99f9-8180d07085e5</d2p1:guid>
</BrandIds>
<CampaignTypeId>c131db44-be54-46fd-8471-c0f08721bb7b</CampaignTypeId>
<CompanyIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>d7e24cc1-5400-4a7e-b3d5-45a928d86806</d2p1:guid>
<d2p1:guid>a8ece4de-8c77-4bf5-af41-eafd6aa2849a</d2p1:guid>
</CompanyIds>
<CreationDate>2026-01-09T14:10:51.3455845+00:00</CreationDate>
<Id>6126f89e-514a-43de-96d5-475667fc153c</Id>
<IsDeleted>true</IsDeleted>
<ManagerGroupId>b5cd80e8-63f6-4a63-b716-88fed8752b04</ManagerGroupId>
<Name>sample string 3</Name>
<ProductIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>f5d7df00-e1aa-4324-8d8a-aedb110dd18e</d2p1:guid>
<d2p1:guid>8a95f73d-921c-40fe-b866-3f93c74f6e39</d2p1:guid>
</ProductIds>
</CampaignDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.