changedInput schema / properties / campaignId / description
Previous value: -"Campaign ID"New value: +"campaignId required endpoint parameter"
removedInput schema / properties / cloneData
Removed value: -{
- "additionalProperties": false,
- "description": "New campaign settings",
- "properties": {
- "campaignName": {
- "description": "Name for the cloned campaign",
- "type": "string"
- },
- "endDate": {
- "description": "End date (ISO 8601 format)",
- "type": "string"
- },
- "fundingStrategy": {
- "additionalProperties": false,
- "properties": {
- "bidPercentage": {
- "description": "Bid percentage (e.g., \"10.5\")",
- "type": "string"
- },
- "fundingModel": {
- "enum": [
- "COST_PER_SALE",
- "COST_PER_CLICK"
- ],
- "type": "string"
- }
- },
- "type": "object"
- },
- "startDate": {
- "description": "Start date (ISO 8601 format)",
- "type": "string"
- }
- },
- "type": "object"
-}
addedInput schema / properties / request
Added value: +{
+ "additionalProperties": false,
+ "description": "Clone campaign request body",
+ "properties": {
+ "campaignName": {
+ "type": "string"
+ },
+ "endDate": {
+ "type": "string"
+ },
+ "fundingStrategy": {
+ "additionalProperties": false,
+ "properties": {
+ "bidPercentage": {
+ "type": "string"
+ },
+ "fundingModel": {
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "startDate": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "campaignName"
+ ],
+ "type": "object"
+}
changedInput schema / required
Previous value: -[
- "campaignId",
- "cloneData"
-]New value: +[
+ "campaignId",
+ "request"
+]