removedInput schema / properties / ads
Removed value: -{
- "additionalProperties": false,
- "description": "Bulk bid update request",
- "properties": {
- "requests": {
- "description": "Array of bid update requests",
- "items": {
- "additionalProperties": false,
- "properties": {
- "bidPercentage": {
- "description": "New bid percentage (e.g., \"10.5\")",
- "type": "string"
- },
- "inventoryReferenceId": {
- "description": "SKU or inventory item group key",
- "type": "string"
- },
- "inventoryReferenceType": {
- "description": "Reference type",
- "enum": [
- "INVENTORY_ITEM",
- "INVENTORY_ITEM_GROUP"
- ],
- "type": "string"
- }
- },
- "required": [
- "inventoryReferenceId",
- "inventoryReferenceType",
- "bidPercentage"
- ],
- "type": "object"
- },
- "type": "array"
- }
- },
- "required": [
- "requests"
- ],
- "type": "object"
-}
changedInput schema / properties / campaignId / description
Previous value: -"Campaign ID"New value: +"campaignId required endpoint parameter"
addedInput schema / properties / request
Added value: +{
+ "additionalProperties": false,
+ "description": "Bulk update ads bid by inventory reference request body",
+ "properties": {
+ "requests": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "bidPercentage": {
+ "type": "string"
+ },
+ "inventoryReferenceId": {
+ "type": "string"
+ },
+ "inventoryReferenceType": {
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "type": "object"
+}
changedInput schema / required
Previous value: -[
- "campaignId",
- "ads"
-]New value: +[
+ "campaignId",
+ "request"
+]