{
	"info": {
		"_postman_id": "a29e4303-eaf1-4dd6-8b9b-ce7f10a61277",
		"name": "Campaigns API V3 \u2014 Reference Collection",
		"description": "# Campaigns API V3 \u2014 Reference Collection\n\nA comprehensive reference collection for the Campaigns API V3, covering the full entity hierarchy and all major operations.\n\n## Setup\n\n### Environment Variables\n\nConfigure your Postman environment with these required variables:\n\n| Variable | Description | Example |\n|----------|-------------|---------|\n| `baseurl` | API base URL (include trailing slash) | `https://api.mediamath.com/api/v3.0/` |\n| `clientID` | OAuth2 client ID | *(from your account)* |\n| `clientSecret` | OAuth2 client secret | *(from your account)* |\n| `username` | Your login username | `user@example.com` |\n| `password` | Your login password | *(your password)* |\n\n### Getting Started\n\n1. Import this collection into Postman\n2. Configure an environment with the variables above\n3. Run **Health Check** to verify connectivity (no auth required)\n4. Run **Login / Generate Token** to authenticate\n5. Explore endpoints by folder \u2014 each folder covers one entity type\n\n## Entity Hierarchy\n\n```\nOrganization\n  \u2514\u2500 Agency\n       \u2514\u2500 Advertiser\n            \u251c\u2500 Campaign\n            \u2502    \u251c\u2500 Budget Flight\n            \u2502    \u2514\u2500 Strategy\n            \u2502         \u251c\u2500 Targeting (Technology, Location, IP, Postal Code, Contextual)\n            \u2502         \u251c\u2500 Day Parts\n            \u2502         \u2514\u2500 Strategy Concepts\n            \u251c\u2500 Concept\n            \u2502    \u2514\u2500 Atomic Creative\n            \u251c\u2500 Pixel Bundle (Event / Data)\n            \u2514\u2500 Site List\n```\n\n## Common Patterns\n\n- **List endpoints** support `full=*` (all fields), `page_limit`, `page_offset`, `sort_by`, and `q` (filter) parameters\n- **Create** returns `201` with the created entity in `data`\n- **Update** returns `200` with the updated entity in `data`\n- **All responses** wrap data in `{ \"data\": ..., \"meta\": { \"status\": \"success\" } }`; list responses add `count`, `total_count`, and `offset` to `meta`\n- **History** endpoints return audit logs with `action`, `date`, `user_name`, and changed `fields` (with `old_value` / `new_value` for updates)\n- **Filtering** uses the `q` parameter with operators: `==` (equals), `=:` (contains), `>=`, `<=`\n\n## Collection Variables\n\nThis collection uses `{{variable}}` placeholders (e.g., `{{campaignID}}`, `{{advertiserID}}`). Replace these with actual entity IDs from your account, or run the collection in order \u2014 earlier requests populate variables for later ones.\n",
		"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
	},
	"event": [
		{
			"listen": "prerequest",
			"script": {
				"id": "c4d54910-c578-4d72-b1e6-32d26ad7d21b",
				"type": "text/javascript",
				"exec": [
					"// Generate future dates so budget flights are always valid",
					"var now = new Date();",
					"var start = new Date(Date.UTC(now.getUTCFullYear(), now.getUTCMonth() + 1, 1));",
					"var end = new Date(Date.UTC(start.getUTCFullYear(), start.getUTCMonth() + 12, start.getUTCDate()));",
					"",
					"pm.collectionVariables.set('futureStartDate', start.toISOString().replace('.000Z', 'Z'));",
					"pm.collectionVariables.set('futureEndDate', end.toISOString().replace('.000Z', 'Z'));"
				],
				"packages": {},
				"requests": {}
			}
		}
	],
	"item": [
		{
			"name": "Health Check",
			"description": "Verifies the API is reachable. Does not require authentication.",
			"item": [
				{
					"name": "Health Check",
					"id": "1da947f1-0753-429d-8b0e-7e5183b165a2",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "noauth"
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}healthcheck",
							"host": [
								"{{baseurl}}healthcheck"
							]
						},
						"description": "Verifies the API is online and responsive. Returns `build_date` and `database_connection` status. This endpoint does **not** require authentication."
					},
					"response": []
				}
			],
			"id": "dab4fc81-3487-4233-8474-90758a90a78c"
		},
		{
			"name": "Authentication",
			"description": "Authenticates via Auth0 and stores the bearer token for all subsequent requests.",
			"item": [
				{
					"name": "Login / Generate Token",
					"id": "7f27169d-af11-4c16-ae1f-c7b5571036fe",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "noauth"
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"grant_type\": \"password\",\n    \"client_id\": \"{{clientID}}\",\n    \"client_secret\": \"{{clientSecret}}\",\n    \"audience\": \"https://api.mediamath.com/\",\n    \"scope\": \"openid\",\n    \"username\": \"{{username}}\",\n    \"password\": \"{{password}}\"\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "https://auth.mediamath.com/oauth/token",
							"host": [
								"https://auth.mediamath.com/oauth/token"
							]
						},
						"description": "Authenticates via Auth0 using the Resource Owner Password grant. Requires `clientID`, `clientSecret`, `username`, and `password` environment variables. Returns an `access_token` used as a Bearer token for all subsequent requests."
					},
					"response": [],
					"event": [
						{
							"listen": "test",
							"script": {
								"type": "text/javascript",
								"exec": [
									"pm.collectionVariables.set(\"bearerToken\", pm.response.json().access_token);"
								]
							}
						}
					]
				}
			],
			"id": "a8ee0794-ef53-4602-bf41-59117d2ae06a"
		},
		{
			"name": "Reference Data",
			"description": "Fetches read-only reference data (ad servers, currencies, timezones, verticals, etc.) used to populate dynamic fields in subsequent requests.",
			"item": [
				{
					"name": "List Ad Servers",
					"id": "afda408a-c806-4ba4-ab2d-c6f00b4a2059",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}ad_servers?full=*&page_limit=100&page_offset=0&sort_by=name",
							"host": [
								"{{baseurl}}ad_servers"
							],
							"query": [
								{
									"key": "full",
									"value": "*"
								},
								{
									"key": "page_limit",
									"value": "100"
								},
								{
									"key": "page_offset",
									"value": "0"
								},
								{
									"key": "sort_by",
									"value": "name"
								}
							]
						},
						"description": "Lists available ad server integrations. The `id` is used in the `ad_server_id` field when creating advertisers."
					},
					"response": []
				},
				{
					"name": "List Timezones",
					"id": "e0877761-bc04-45ad-922b-5e54cc2d9d43",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}timezones?full=*&page_limit=100&page_offset=0&sort_by=description",
							"host": [
								"{{baseurl}}timezones"
							],
							"query": [
								{
									"key": "full",
									"value": "*"
								},
								{
									"key": "page_limit",
									"value": "100"
								},
								{
									"key": "page_offset",
									"value": "0"
								},
								{
									"key": "sort_by",
									"value": "description"
								}
							]
						},
						"description": "Lists supported timezones. The `zone_name` (e.g., `America/New_York`) is used when creating campaigns."
					},
					"response": []
				},
				{
					"name": "List Currencies",
					"id": "faa095a6-13eb-4c87-bebd-563eb36d6a40",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}currency_rates?full=*&page_limit=100&page_offset=0&sort_by=-id",
							"host": [
								"{{baseurl}}currency_rates"
							],
							"query": [
								{
									"key": "full",
									"value": "*"
								},
								{
									"key": "page_limit",
									"value": "100"
								},
								{
									"key": "page_offset",
									"value": "0"
								},
								{
									"key": "sort_by",
									"value": "-id"
								}
							]
						},
						"description": "Lists supported currencies with exchange rates. The `currency_code` (e.g., `USD`) is required in campaign budgets."
					},
					"response": []
				},
				{
					"name": "List Verticals",
					"id": "9c038723-c002-41a2-97f1-9676459e56ed",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}verticals?full=*&page_limit=100&page_offset=0&sort_by=-id",
							"host": [
								"{{baseurl}}verticals"
							],
							"query": [
								{
									"key": "full",
									"value": "*"
								},
								{
									"key": "page_limit",
									"value": "100"
								},
								{
									"key": "page_offset",
									"value": "0"
								},
								{
									"key": "sort_by",
									"value": "-id"
								}
							]
						},
						"description": "Lists industry verticals for advertiser classification. The `id` is used as `vertical_id` when creating advertisers."
					},
					"response": []
				},
				{
					"name": "List Supply Sources",
					"id": "862ab341-4795-428f-b0a7-16fb4feaa0b0",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}supply_sources?full=*&page_limit=100&page_offset=0&sort_by=-id",
							"host": [
								"{{baseurl}}supply_sources"
							],
							"query": [
								{
									"key": "full",
									"value": "*"
								},
								{
									"key": "page_limit",
									"value": "100"
								},
								{
									"key": "page_offset",
									"value": "0"
								},
								{
									"key": "sort_by",
									"value": "-id"
								}
							]
						},
						"description": "Lists available supply source exchanges for organization seat configuration."
					},
					"response": []
				},
				{
					"name": "Get Supply Source",
					"id": "9bbc3e7d-dd8b-42f2-9cde-7c762db3359d",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}supply_sources/{{supplySourceID}}",
							"host": [
								"{{baseurl}}supply_sources"
							],
							"path": [
								"{{supplySourceID}}"
							]
						}
					},
					"response": []
				},
				{
					"name": "List Vendors",
					"id": "2e556c99-5601-4a0e-a5d8-a8d6bdd2d9a0",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}vendors?full=*&page_limit=100&page_offset=0&sort_by=-id",
							"host": [
								"{{baseurl}}vendors"
							],
							"query": [
								{
									"key": "full",
									"value": "*"
								},
								{
									"key": "page_limit",
									"value": "100"
								},
								{
									"key": "page_offset",
									"value": "0"
								},
								{
									"key": "sort_by",
									"value": "-id"
								}
							]
						},
						"description": "Lists third-party vendor integrations available in the platform."
					},
					"response": []
				},
				{
					"name": "Get Vendor",
					"id": "bf578064-33d4-4a99-baeb-ed36d1107fea",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}vendors/{{vendorID}}",
							"host": [
								"{{baseurl}}vendors"
							],
							"path": [
								"{{vendorID}}"
							]
						}
					},
					"response": []
				},
				{
					"name": "List Pixel Providers",
					"id": "cdb585e3-e35b-4b1d-bce6-63eae5366002",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}pixel_providers?full=*&page_limit=100&page_offset=0&sort_by=-id",
							"host": [
								"{{baseurl}}pixel_providers"
							],
							"query": [
								{
									"key": "full",
									"value": "*"
								},
								{
									"key": "page_limit",
									"value": "100"
								},
								{
									"key": "page_offset",
									"value": "0"
								},
								{
									"key": "sort_by",
									"value": "-id"
								}
							]
						},
						"description": "Lists pixel provider options. The `id` is required as `provider_id` when creating data pixels."
					},
					"response": []
				},
				{
					"name": "List Roles",
					"id": "3e6e07fb-ba20-4955-8678-cdc7ec481391",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}roles?full=*&page_limit=100&page_offset=0&sort_by=-id",
							"host": [
								"{{baseurl}}roles"
							],
							"query": [
								{
									"key": "full",
									"value": "*"
								},
								{
									"key": "page_limit",
									"value": "100"
								},
								{
									"key": "page_offset",
									"value": "0"
								},
								{
									"key": "sort_by",
									"value": "-id"
								}
							]
						},
						"description": "Lists available user roles and their associated permissions."
					},
					"response": []
				},
				{
					"name": "List Audience Vendors",
					"id": "c28f96bc-ce6c-4778-aa42-2e3149ca05b9",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}audience_vendors?full=*&page_limit=100&page_offset=0&sort_by=name",
							"host": [
								"{{baseurl}}audience_vendors"
							],
							"query": [
								{
									"key": "full",
									"value": "*"
								},
								{
									"key": "page_limit",
									"value": "100"
								},
								{
									"key": "page_offset",
									"value": "0"
								},
								{
									"key": "sort_by",
									"value": "name"
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Get Audience Vendor",
					"id": "41350b24-f1bf-4fe3-968d-a02a83f67999",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}audience_vendors/{{audienceVendorID}}",
							"host": [
								"{{baseurl}}audience_vendors"
							],
							"path": [
								"{{audienceVendorID}}"
							]
						}
					},
					"response": []
				},
				{
					"name": "List Vendor Contracts",
					"id": "c8f24372-8e4e-4b15-becd-40556e9eba46",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}vendor_contracts?full=*&page_limit=100&page_offset=0&sort_by=-id",
							"host": [
								"{{baseurl}}vendor_contracts"
							],
							"query": [
								{
									"key": "full",
									"value": "*"
								},
								{
									"key": "page_limit",
									"value": "100"
								},
								{
									"key": "page_offset",
									"value": "0"
								},
								{
									"key": "sort_by",
									"value": "-id"
								}
							]
						}
					},
					"response": []
				}
			],
			"id": "cb7471e9-f57c-4dd8-8f58-41c06a6b4e6c"
		},
		{
			"name": "Organizations",
			"description": "CRUD operations for organizations including settings management and audit history.",
			"item": [
				{
					"name": "Get Organization",
					"id": "c79058fb-6b00-47a1-8e6e-4836154645b1",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}organizations/{{organizationID}}",
							"host": [
								"{{baseurl}}organizations"
							],
							"path": [
								"{{organizationID}}"
							]
						},
						"description": "Retrieves a single organization by ID with all fields including seat configuration and MFA settings."
					},
					"response": []
				},
				{
					"name": "Update Organization",
					"id": "b714a447-ce49-4e84-9f50-0f062e09c97c",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"address_1\": \"Address 1\",\n    \"address_2\": \"Address 2\",\n    \"adx_seat_account_id\": 6494527400,\n    \"allow_byo_price\": false,\n    \"allow_x_agency_pixels\": false,\n    \"billing_country_code\": \"US\",\n    \"city\": \"City\",\n    \"connected_id_type\": \"DETERMINISTIC_FIRST\",\n    \"contact_name\": \"Contact Name\",\n    \"country\": \"US\",\n    \"currency_code\": \"USD\",\n    \"dmp_enabled\": \"enabled\",\n    \"eligible_for_data_sharing\": false,\n    \"mm_contact_name\": \"MediaMath Contact Name\",\n    \"name\": \"Organization Name\",\n    \"opt_out_connected_id\": true,\n    \"opt_out_connected_id_mathid\": false,\n    \"org_type\": [\n        \"buyer\"\n    ],\n    \"override_suspicious_traffic_filter\": false,\n    \"phone\": \"347-471-1236\",\n    \"zip\": \"11236\",\n    \"restrict_targeting_to_deterministic_id\": true,\n    \"restrict_targeting_to_same_device_id\": false,\n    \"service_provider_ccpa\": true,\n    \"state\": \"NY\",\n    \"status\": true,\n    \"suspicious_traffic_filter_level\": 25,\n    \"terminated\": false,\n    \"use_ads_txt\": true,\n    \"use_evidon_optout\": true,\n    \"mfa_avoidance\": \"ALLOW_ALL\",\n    \"mcp_enabled\": false,\n    \"mcp_access_level\": \"read_only\",\n    \"seats\": [\n        {\n            \"supply_source_id\": 159,\n            \"seat_identifier\": \"123456\",\n            \"status\": false,\n            \"bill_media_to_client\": false,\n            \"rmx_exchange_cost_unit\": \"PCT_MEDIA\"\n        }\n    ]\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{baseurl}}organizations/{{organizationID}}",
							"host": [
								"{{baseurl}}organizations"
							],
							"path": [
								"{{organizationID}}"
							]
						},
						"description": "Updates organization properties including seat configuration with supply source assignments."
					},
					"response": []
				},
				{
					"name": "List Organizations",
					"id": "4811c235-387c-4380-a595-c21e848cdb23",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}organizations?full=*&sort_by=-id&page_limit=100&page_offset=0",
							"host": [
								"{{baseurl}}organizations"
							],
							"query": [
								{
									"key": "full",
									"value": "*"
								},
								{
									"key": "sort_by",
									"value": "-id"
								},
								{
									"key": "page_limit",
									"value": "100"
								},
								{
									"key": "page_offset",
									"value": "0"
								},
								{
									"key": "q",
									"value": "status==true",
									"disabled": true
								}
							]
						},
						"description": "Lists all organizations accessible to the authenticated user. Supports `full=*`, pagination, and `q` filtering."
					},
					"response": []
				},
				{
					"name": "Get Organization Settings",
					"id": "8755e4d6-5ae9-477d-88d0-b2bdb0663f24",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}organizations/{{organizationID}}/settings",
							"host": [
								"{{baseurl}}organizations/{{organizationID}}"
							],
							"path": [
								"settings"
							]
						},
						"description": "Retrieves organization-level settings as key-value pairs that control default behaviors for child entities."
					},
					"response": []
				},
				{
					"name": "Update Organization Settings",
					"id": "e20345e5-31a1-406b-b8e0-6dfd20c8e5f7",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"settings\": [\n        {\n            \"key\": \"default_us_settings\",\n            \"value\": \"1\"\n        }\n    ]\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{baseurl}}organizations/{{organizationID}}/settings",
							"host": [
								"{{baseurl}}organizations/{{organizationID}}"
							],
							"path": [
								"settings"
							]
						},
						"description": "Updates organization settings. Accepts an array of `{ key, value }` objects."
					},
					"response": []
				},
				{
					"name": "Get Organization History",
					"id": "e9b90271-a71e-4c68-bdcf-c75580563f74",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}organizations/{{organizationID}}/history",
							"host": [
								"{{baseurl}}organizations"
							],
							"path": [
								"{{organizationID}}",
								"history"
							]
						},
						"description": "Returns the audit log for an organization showing all changes with timestamps and user attribution."
					},
					"response": []
				}
			],
			"id": "4efed283-f500-4597-beb3-64caca3b30d6"
		},
		{
			"name": "Agencies",
			"description": "CRUD operations for agencies and audit history.",
			"item": [
				{
					"name": "Create Agency",
					"id": "e88101a2-d212-409d-9734-a32d05d5d9a9",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"organization_id\": {{organizationID}},\n    \"name\": \"New Agency\",\n    \"status\": false,\n    \"mfa_avoidance\": \"ALLOW_ALL\",\n    \"ads_txt_verified\": \"ANY\",\n    \"allow_x_adv_optimization\": false,\n    \"allow_x_adv_pixels\": true,\n    \"dmp_enabled\": \"inherits\",\n    \"eligible_for_data_sharing\": false\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{baseurl}}agencies",
							"host": [
								"{{baseurl}}agencies"
							]
						},
						"description": "Creates an agency under an organization. Required fields: `organization_id`, `name`."
					},
					"response": []
				},
				{
					"name": "Get Agency",
					"id": "b70d3758-e177-40d8-8234-811599970dfb",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}agencies/{{agencyID}}",
							"host": [
								"{{baseurl}}agencies"
							],
							"path": [
								"{{agencyID}}"
							],
							"query": [
								{
									"key": "extended",
									"value": "true",
									"disabled": true
								}
							]
						},
						"description": "Retrieves a single agency by ID."
					},
					"response": []
				},
				{
					"name": "Update Agency",
					"id": "01044323-f25e-49c9-b605-c76bdc4e1401",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"name\": \"Agency {{$randomCompanyName}}\",\n    \"status\": true,\n    \"mfa_avoidance\": \"EXCLUDE_MFA\",\n    \"ads_txt_verified\": \"ANY\",\n    \"allow_x_adv_optimization\": false,\n    \"allow_x_adv_pixels\": true,\n    \"dmp_enabled\": \"inherits\",\n    \"eligible_for_data_sharing\": false\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{baseurl}}agencies/{{agencyID}}",
							"host": [
								"{{baseurl}}agencies"
							],
							"path": [
								"{{agencyID}}"
							]
						},
						"description": "Updates agency properties including `name`, `status`, and `mfa_avoidance`."
					},
					"response": []
				},
				{
					"name": "List Agencies",
					"id": "a4c38dde-07b9-4f22-a0d6-830edae8b94f",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}agencies?full=*&sort_by=-id&page_limit=100&page_offset=0",
							"host": [
								"{{baseurl}}agencies"
							],
							"query": [
								{
									"key": "full",
									"value": "*"
								},
								{
									"key": "sort_by",
									"value": "-id"
								},
								{
									"key": "page_limit",
									"value": "100"
								},
								{
									"key": "page_offset",
									"value": "0"
								},
								{
									"key": "q",
									"value": "organization_id=={{organizationID}}",
									"disabled": true
								},
								{
									"key": "with",
									"value": "organization",
									"disabled": true
								}
							]
						},
						"description": "Lists agencies. Supports `q` filtering by `organization_id` and `with=organization` to include parent data."
					},
					"response": []
				},
				{
					"name": "Get Agency History",
					"id": "3f6d2e21-a4ba-4995-b4c5-a00efd52d876",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}agencies/{{agencyID}}/history",
							"host": [
								"{{baseurl}}agencies"
							],
							"path": [
								"{{agencyID}}",
								"history"
							]
						},
						"description": "Returns the audit log for an agency."
					},
					"response": []
				}
			],
			"id": "45cb046c-64cf-45ee-af6a-edee323ddeb7"
		},
		{
			"name": "Advertisers",
			"description": "CRUD operations for advertisers and audit history.",
			"item": [
				{
					"name": "Create Advertiser",
					"id": "552498f1-550b-4354-b4c7-d9880aa184b2",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"agency_id\": {{agencyID}},\n    \"name\": \"New Advertiser\",\n    \"ad_server_id\": 1,\n    \"mfa_avoidance\": \"EXCLUDE_MFA\",\n    \"data_sharing_enabled\": false,\n    \"dmp_enabled\": \"inherits\",\n    \"domain\": \"https://example.com\",\n    \"frequency_interval\": \"not-applicable\",\n    \"frequency_type\": \"no-limit\",\n    \"frequency_amount\": 0,\n    \"minimize_multi_ads\": false,\n    \"status\": true,\n    \"vertical_id\": 57,\n    \"political\": false,\n    \"connected_id_type\": \"DETERMINISTIC_FIRST\",\n    \"attribution_level\": \"HOUSEHOLD\",\n    \"targeting_identity_level\": \"HOUSEHOLD\",\n    \"advertiser_brain\": true\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{baseurl}}advertisers",
							"host": [
								"{{baseurl}}advertisers"
							]
						},
						"description": "Creates an advertiser under an agency. Required fields: `agency_id`, `name`, `ad_server_id`, `vertical_id`, `domain` (must include protocol, e.g., `https://www.example.com`)."
					},
					"response": []
				},
				{
					"name": "Get Advertiser",
					"id": "e0bd6865-e1ce-44fd-b8cd-a0957514ca31",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}advertisers/{{advertiserID}}",
							"host": [
								"{{baseurl}}advertisers"
							],
							"path": [
								"{{advertiserID}}"
							],
							"query": [
								{
									"key": "extended",
									"value": "true",
									"disabled": true
								}
							]
						},
						"description": "Retrieves a single advertiser by ID."
					},
					"response": []
				},
				{
					"name": "Update Advertiser",
					"id": "d7692ed5-6077-4352-a673-3adc6add0ad6",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"name\": \"Advertiser {{$randomCompanyName}}\",\n    \"status\": false,\n    \"mfa_avoidance\": \"INHERIT\",\n    \"ad_server_id\": 1,\n    \"data_sharing_enabled\": false,\n    \"dmp_enabled\": \"inherits\",\n    \"domain\": \"https://example.com\",\n    \"frequency_interval\": \"not-applicable\",\n    \"frequency_type\": \"no-limit\",\n    \"frequency_amount\": 0,\n    \"minimize_multi_ads\": false,\n    \"vertical_id\": 57,\n    \"political\": false,\n    \"connected_id_type\": \"DETERMINISTIC_FIRST\",\n    \"attribution_level\": \"INDIVIDUAL\",\n    \"targeting_identity_level\": \"INDIVIDUAL\",\n    \"advertiser_brain\": true\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{baseurl}}advertisers/{{advertiserID}}",
							"host": [
								"{{baseurl}}advertisers"
							],
							"path": [
								"{{advertiserID}}"
							]
						},
						"description": "Updates advertiser properties including `domain`, `attribution_level`, and `mfa_avoidance`."
					},
					"response": []
				},
				{
					"name": "List Advertisers",
					"id": "114b7a0d-3d10-496a-82be-fff5be8fde3b",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}advertisers?full=*&sort_by=-id&page_limit=100&page_offset=0",
							"host": [
								"{{baseurl}}advertisers"
							],
							"query": [
								{
									"key": "full",
									"value": "*"
								},
								{
									"key": "sort_by",
									"value": "-id"
								},
								{
									"key": "page_limit",
									"value": "100"
								},
								{
									"key": "page_offset",
									"value": "0"
								},
								{
									"key": "q",
									"value": "agency_id=={{agencyID}}",
									"disabled": true
								},
								{
									"key": "with",
									"value": "agency",
									"disabled": true
								}
							]
						},
						"description": "Lists advertisers. Supports `q` filtering by `agency_id` and `with=agency` for parent data."
					},
					"response": []
				},
				{
					"name": "Get Advertiser History",
					"id": "358f5a7c-db5f-4184-b9e0-703a5bf79a94",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}advertisers/{{advertiserID}}/history",
							"host": [
								"{{baseurl}}advertisers"
							],
							"path": [
								"{{advertiserID}}",
								"history"
							]
						},
						"description": "Returns the audit log for an advertiser."
					},
					"response": []
				}
			],
			"id": "90d0ad44-4660-4bfc-8327-9f9a4e15bb70"
		},
		{
			"name": "Site Lists",
			"description": "Site list CRUD via file upload, assignments, and CSV download.",
			"item": [
				{
					"name": "Upload Create Site List",
					"id": "e91f4186-cf8c-4cab-8d00-07a36d25780f",
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [],
						"body": {
							"mode": "formdata",
							"formdata": [
								{
									"key": "file",
									"type": "file",
									"src": "creatives/test_site_list.csv"
								},
								{
									"key": "organization_id",
									"value": "{{organizationID}}",
									"type": "text"
								},
								{
									"key": "name",
									"value": "E2E Test Site List",
									"type": "text"
								},
								{
									"key": "restriction",
									"value": "INCLUDE",
									"type": "text"
								},
								{
									"key": "status",
									"value": "true",
									"type": "text"
								}
							]
						},
						"url": {
							"raw": "{{baseurl}}site_lists/upload",
							"host": [
								"{{baseurl}}site_lists/upload"
							]
						},
						"description": "Creates a site list by uploading a CSV file of domains. Uses multipart/form-data with fields: `file` (CSV), `organization_id`, `name`, `restriction` (`INCLUDE` or `EXCLUDE`), `status`."
					},
					"response": []
				},
				{
					"name": "Get Site List",
					"id": "a42073c1-743e-4007-a105-040b6c5f637c",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}site_lists/{{siteListID}}",
							"host": [
								"{{baseurl}}site_lists"
							],
							"path": [
								"{{siteListID}}"
							]
						},
						"description": "Retrieves a single site list by ID including `sites_count` and `restriction` type."
					},
					"response": []
				},
				{
					"name": "Upload Update Site List",
					"id": "8a847755-ff28-441e-94ad-adcc15923187",
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [],
						"body": {
							"mode": "formdata",
							"formdata": [
								{
									"key": "file",
									"type": "file",
									"src": "creatives/test_site_list_updated.csv"
								},
								{
									"key": "organization_id",
									"value": "{{organizationID}}",
									"type": "text"
								},
								{
									"key": "name",
									"value": "E2E Test Site List Updated",
									"type": "text"
								},
								{
									"key": "restriction",
									"value": "INCLUDE",
									"type": "text"
								},
								{
									"key": "status",
									"value": "true",
									"type": "text"
								}
							]
						},
						"url": {
							"raw": "{{baseurl}}site_lists/{{siteListID}}/upload",
							"host": [
								"{{baseurl}}site_lists"
							],
							"path": [
								"{{siteListID}}",
								"upload"
							]
						},
						"description": "Replaces a site list's domain list by uploading a new CSV. Also supports updating `name`, `restriction`, and `status`."
					},
					"response": []
				},
				{
					"name": "List Site Lists",
					"id": "eab08b81-2516-481e-a11c-fe36ddfffb8a",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}site_lists?full=*&sort_by=-id&page_limit=100&page_offset=0",
							"host": [
								"{{baseurl}}site_lists"
							],
							"query": [
								{
									"key": "full",
									"value": "*"
								},
								{
									"key": "sort_by",
									"value": "-id"
								},
								{
									"key": "page_limit",
									"value": "100"
								},
								{
									"key": "page_offset",
									"value": "0"
								},
								{
									"key": "q",
									"value": "organization_id=={{organizationID}}",
									"disabled": true
								}
							]
						},
						"description": "Lists all site lists. Supports `q` filtering by `organization_id`."
					},
					"response": []
				},
				{
					"name": "List Site List Assignments",
					"id": "c0f3bda6-efc8-4e8f-9665-461f5f0d6d0e",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}site_lists/{{siteListID}}/assignments?full=*&sort_by=-id&page_limit=100&page_offset=0",
							"host": [
								"{{baseurl}}site_lists/{{siteListID}}/assignments"
							],
							"query": [
								{
									"key": "full",
									"value": "*"
								},
								{
									"key": "sort_by",
									"value": "-id"
								},
								{
									"key": "page_limit",
									"value": "100"
								},
								{
									"key": "page_offset",
									"value": "0"
								}
							]
						},
						"description": "Lists all strategies and campaigns that reference a specific site list."
					},
					"response": []
				},
				{
					"name": "Download Site List CSV",
					"id": "b4d53e71-0675-485e-a2a2-6b1171664962",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}site_lists/{{siteListID}}/download.csv",
							"host": [
								"{{baseurl}}site_lists/{{siteListID}}"
							],
							"path": [
								"download.csv"
							]
						},
						"description": "Downloads the contents of a site list as a CSV file."
					},
					"response": []
				}
			],
			"id": "105b4622-b1ba-4494-b256-740f5e6ed141"
		},
		{
			"name": "Concepts",
			"description": "CRUD operations for creative concepts and audit history.",
			"item": [
				{
					"name": "Create Concept",
					"id": "9671ccda-c8af-4619-98cf-d7513d51b0e6",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"advertiser_id\": {{advertiserID}},\n    \"name\": \"New Concept\",\n    \"status\": true,\n    \"archived\": false\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{baseurl}}concepts",
							"host": [
								"{{baseurl}}concepts"
							]
						},
						"description": "Creates a creative concept under an advertiser. Required fields: `advertiser_id`, `name`. Concepts group atomic creatives for rotation within strategies."
					},
					"response": []
				},
				{
					"name": "Get Concept",
					"id": "7cca800a-0843-4916-9bbc-3ff0d0804ed9",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}concepts/{{conceptID}}",
							"host": [
								"{{baseurl}}concepts"
							],
							"path": [
								"{{conceptID}}"
							]
						},
						"description": "Retrieves a single concept by ID including the `version` field needed for updates."
					},
					"response": []
				},
				{
					"name": "Update Concept",
					"id": "cf87db05-059b-472c-a35b-71c13a5c6ea9",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"name\": \"Concept {{$randomCompanyName}}\",\n    \"status\": true,\n    \"archived\": false,\n    \"version\": {{conceptVersion}}\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{baseurl}}concepts/{{conceptID}}",
							"host": [
								"{{baseurl}}concepts"
							],
							"path": [
								"{{conceptID}}"
							]
						},
						"description": "Updates a concept. The `version` field is **required** to prevent concurrent modification conflicts."
					},
					"response": []
				},
				{
					"name": "List Concepts",
					"id": "07a70f01-40d1-44cb-9434-d5d7e5cd8c61",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}concepts?full=*&sort_by=-id&page_limit=100&page_offset=0",
							"host": [
								"{{baseurl}}concepts"
							],
							"query": [
								{
									"key": "full",
									"value": "*"
								},
								{
									"key": "sort_by",
									"value": "-id"
								},
								{
									"key": "page_limit",
									"value": "100"
								},
								{
									"key": "page_offset",
									"value": "0"
								},
								{
									"key": "q",
									"value": "advertiser_id=={{advertiserID}}",
									"disabled": true
								},
								{
									"key": "media_type",
									"value": "display,video",
									"disabled": true
								}
							]
						},
						"description": "Lists concepts. Supports `q` filtering by `advertiser_id`."
					},
					"response": []
				},
				{
					"name": "Get Concept History",
					"id": "89ec7a1a-dba9-44e2-9af4-edbac09b2f15",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}concepts/{{conceptID}}/history",
							"host": [
								"{{baseurl}}concepts"
							],
							"path": [
								"{{conceptID}}",
								"history"
							]
						},
						"description": "Returns the audit log for a concept."
					},
					"response": []
				}
			],
			"id": "c4348bb1-6a88-4ee6-be12-d7ad3781bc81"
		},
		{
			"name": "Pixel Bundles",
			"description": "CRUD for event and data pixels, and audit history.",
			"item": [
				{
					"name": "Create Pixel Bundle (Event)",
					"id": "e2a4305c-04bd-466b-af9f-de599a02d326",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"advertiser_id\": {{advertiserID}},\n    \"name\": \"New Pixel Bundle\",\n    \"status\": true,\n    \"pixel_type\": \"event\",\n    \"tag_type\": \"image\"\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{baseurl}}pixel_bundles",
							"host": [
								"{{baseurl}}pixel_bundles"
							]
						},
						"description": "Creates an event pixel under an advertiser for tracking user actions (e.g., conversions). Required fields: `advertiser_id`, `name`, `pixel_type` (`event`), `tag_type`."
					},
					"response": []
				},
				{
					"name": "Create Pixel Bundle (Data)",
					"id": "bcc1195e-39ab-4ee0-81bb-2add962dd3a3",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"agency_id\": {{agencyID}},\n    \"name\": \"New Data Pixel\",\n    \"status\": true,\n    \"pixel_type\": \"data\",\n    \"tag_type\": \"js\",\n    \"cost_cpm\": 0,\n    \"provider_id\": 1,\n    \"pricing\": \"CPM\"\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{baseurl}}pixel_bundles",
							"host": [
								"{{baseurl}}pixel_bundles"
							]
						},
						"description": "Creates a data pixel under an **agency** (not advertiser) for importing third-party audience data. Required fields: `agency_id`, `name`, `pixel_type` (`data`), `tag_type`, `cost_cpm`, `provider_id`, `pricing`."
					},
					"response": []
				},
				{
					"name": "Get Pixel Bundle",
					"id": "f97b475c-893a-43d8-a7cb-85d16f563c00",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}pixel_bundles/{{pixelBundleID}}",
							"host": [
								"{{baseurl}}pixel_bundles"
							],
							"path": [
								"{{pixelBundleID}}"
							]
						},
						"description": "Retrieves a single pixel bundle by ID."
					},
					"response": []
				},
				{
					"name": "Update Pixel Bundle",
					"id": "245574da-1322-4320-aa5a-bb19e6dc3029",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"name\": \"Pixel Bundle {{$randomCompanyName}}\",\n    \"status\": true\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{baseurl}}pixel_bundles/{{pixelBundleID}}",
							"host": [
								"{{baseurl}}pixel_bundles"
							],
							"path": [
								"{{pixelBundleID}}"
							]
						},
						"description": "Updates pixel bundle properties such as `name` and `status`."
					},
					"response": []
				},
				{
					"name": "List Pixel Bundles",
					"id": "41546712-c663-41ce-af97-4c6ba6fff26c",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}pixel_bundles?full=*&sort_by=-id&page_limit=100&page_offset=0",
							"host": [
								"{{baseurl}}pixel_bundles"
							],
							"query": [
								{
									"key": "full",
									"value": "*"
								},
								{
									"key": "sort_by",
									"value": "-id"
								},
								{
									"key": "page_limit",
									"value": "100"
								},
								{
									"key": "page_offset",
									"value": "0"
								},
								{
									"key": "q",
									"value": "advertiser_id=={{advertiserID}}",
									"disabled": true
								},
								{
									"key": "with",
									"value": "agency",
									"disabled": true
								}
							]
						},
						"description": "Lists pixel bundles. Supports `q` filtering by `advertiser_id`."
					},
					"response": []
				},
				{
					"name": "Get Pixel Bundle History",
					"id": "cf716103-e1aa-4e52-9e22-02e9045d9fed",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}pixel_bundles/{{pixelBundleID}}/history",
							"host": [
								"{{baseurl}}pixel_bundles"
							],
							"path": [
								"{{pixelBundleID}}",
								"history"
							]
						},
						"description": "Returns the audit log for a pixel bundle."
					},
					"response": []
				}
			],
			"id": "bd49a20a-4924-449d-9839-139806c1bf5f"
		},
		{
			"name": "Campaigns",
			"description": "CRUD for campaigns with multiple goal types (spend, CPC, CPA, VCR, ROI), pacing/frequency configurations, copy operations, and audit history.",
			"item": [
				{
					"name": "Create Campaign (Spend Goal)",
					"id": "5217ff3f-dea1-4254-a6a7-1148f1bfe051",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"advertiser_id\": {{advertiserID}},\n    \"name\": \"Campaign Spend Goal\",\n    \"status\": true,\n    \"archived\": false,\n    \"service_type\": \"SELF\",\n    \"zone_name\": \"{{zoneName}}\",\n    \"targeting_identity_level\": \"INHERIT\",\n    \"goals\": {\n        \"goal_type\": \"spend\",\n        \"goal_value\": 100\n    },\n    \"budget\": {\n        \"currency_code\": \"{{currencyCode}}\",\n        \"margin_pct\": 0,\n        \"dynamic_budget_allocation_type\": \"OFF\",\n        \"flights\": [\n            {\n                \"start_date\": \"{{futureStartDate}}\",\n                \"end_date\": \"{{futureEndDate}}\",\n                \"total_budget\": 1000,\n                \"total_impression_budget\": null\n            }\n        ]\n    },\n    \"frequency\": {\n        \"frequency_type\": \"no-limit\",\n        \"frequency_optimization\": false\n    },\n    \"pacing\": {\n        \"spend_cap_type\": \"no-limit\",\n        \"impression_cap_type\": \"no-limit\",\n        \"pacing_alert\": 0,\n        \"spend_pace_ahead\": false,\n        \"impression_pace_ahead\": false\n    },\n    \"viewability\": {\n        \"vendor_id\": null,\n        \"type\": \"AUTO_TAG\",\n        \"sample_rate\": 100\n    },\n    \"identity\": {\n        \"device_graph_only\": false,\n        \"bid_min_devices\": null,\n        \"connected_id_type\": \"INHERIT\"\n    },\n    \"ad_server\": {\n        \"ad_server_id\": 1,\n        \"use_default_ad_server\": true,\n        \"ad_server_fee\": 0\n    },\n    \"inventory\": {\n        \"ads_txt_verified\": \"ANY\",\n        \"minimize_multi_ads\": false,\n        \"override_suspicious_traffic_filter\": false,\n        \"suspicious_traffic_filter_level\": 25,\n        \"dcs_data_is_campaign_level\": false,\n        \"restrict_targeting_to_deterministic_id\": false,\n        \"restrict_targeting_to_same_device_id\": false\n    },\n    \"vendor_contracts\": [],\n    \"custom_brain_selections\": []\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{baseurl}}campaigns",
							"host": [
								"{{baseurl}}campaigns"
							]
						},
						"description": "Creates a campaign with a spend optimization goal \u2014 the simplest campaign type. Required: `advertiser_id`, `name`, `goals` (with `goal_type` and `goal_value`), `budget` (with `currency_code` and at least one flight containing `start_date`, `end_date`, `total_budget`)."
					},
					"response": []
				},
				{
					"name": "Create Campaign (CPC Goal)",
					"id": "3c49b27c-8fdc-4afc-b774-a8d6ae0a6cc6",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"advertiser_id\": {{advertiserID}},\n    \"name\": \"Campaign CPC Goal\",\n    \"status\": true,\n    \"service_type\": \"SELF\",\n    \"zone_name\": \"{{zoneName}}\",\n    \"goals\": {\n        \"goal_type\": \"cpc\",\n        \"goal_value\": 2.5\n    },\n    \"budget\": {\n        \"currency_code\": \"{{currencyCode}}\",\n        \"flights\": [\n            {\n                \"start_date\": \"{{futureStartDate}}\",\n                \"end_date\": \"{{futureEndDate}}\",\n                \"total_budget\": 5000\n            }\n        ]\n    },\n    \"frequency\": {\n        \"frequency_type\": \"even\",\n        \"frequency_interval\": \"day\",\n        \"frequency_amount\": 5,\n        \"frequency_optimization\": false\n    },\n    \"pacing\": {\n        \"spend_cap_type\": \"even\",\n        \"spend_cap_amount\": 100,\n        \"impression_cap_type\": \"no-limit\"\n    }\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{baseurl}}campaigns",
							"host": [
								"{{baseurl}}campaigns"
							]
						},
						"description": "Creates a campaign with a CPC (cost-per-click) goal. Demonstrates frequency capping with `even` distribution and spend pacing with `spend_cap_amount`."
					},
					"response": []
				},
				{
					"name": "Create Campaign (Programmatic Guaranteed)",
					"id": "9a5bdca5-8149-43ea-ae49-e7506093a999",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"advertiser_id\": {{advertiserID}},\n    \"name\": \"Campaign Programmatic Guaranteed\",\n    \"status\": true,\n    \"service_type\": \"SELF\",\n    \"is_programmatic_guaranteed\": true,\n    \"zone_name\": \"{{zoneName}}\",\n    \"goals\": {\n        \"goal_type\": \"spend\",\n        \"goal_value\": 100\n    },\n    \"budget\": {\n        \"currency_code\": \"{{currencyCode}}\",\n        \"flights\": [\n            {\n                \"start_date\": \"{{futureStartDate}}\",\n                \"end_date\": \"{{futureEndDate}}\",\n                \"total_budget\": 5000\n            }\n        ]\n    },\n    \"frequency\": {\n        \"frequency_type\": \"no-limit\"\n    },\n    \"pacing\": {\n        \"spend_cap_type\": \"no-limit\",\n        \"impression_cap_type\": \"no-limit\"\n    }\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{baseurl}}campaigns",
							"host": [
								"{{baseurl}}campaigns"
							]
						},
						"description": "Creates a programmatic guaranteed (PG) campaign. PG campaigns have constraints: single budget flight, `no-limit` frequency required, `mfa_avoidance` must be `ALLOW_ALL`."
					},
					"response": []
				},
				{
					"name": "Create Campaign (VCR with Pacing)",
					"id": "a004106a-da5c-429b-870b-094bd7c2bd75",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"advertiser_id\": {{advertiserID}},\n    \"name\": \"Campaign VCR with Viewability\",\n    \"status\": true,\n    \"service_type\": \"SELF\",\n    \"zone_name\": \"{{zoneName}}\",\n    \"goals\": {\n        \"goal_type\": \"vcr\",\n        \"goal_value\": 0.75\n    },\n    \"budget\": {\n        \"currency_code\": \"{{currencyCode}}\",\n        \"flights\": [\n            {\n                \"start_date\": \"{{futureStartDate}}\",\n                \"end_date\": \"{{futureEndDate}}\",\n                \"total_budget\": 8000\n            }\n        ]\n    },\n    \"frequency\": {\n        \"frequency_type\": \"no-limit\"\n    },\n    \"pacing\": {\n        \"spend_cap_type\": \"even\",\n        \"spend_cap_amount\": 200,\n        \"spend_cap_automatic\": false,\n        \"impression_cap_type\": \"even\",\n        \"impression_cap_amount\": 50000,\n        \"impression_cap_automatic\": false\n    }\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{baseurl}}campaigns",
							"host": [
								"{{baseurl}}campaigns"
							]
						},
						"description": "Creates a campaign with a VCR (video completion rate) goal and impression pacing. Demonstrates `impression_cap_type: \"even\"` with `impression_cap_amount`."
					},
					"response": []
				},
				{
					"name": "Create Campaign (ROI with Site Lists)",
					"id": "cacd4f5d-7f37-49d1-9ee8-35ededbd2f26",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"advertiser_id\": {{advertiserID}},\n    \"name\": \"Campaign ROI with Site Lists\",\n    \"status\": true,\n    \"service_type\": \"SELF\",\n    \"zone_name\": \"{{zoneName}}\",\n    \"goals\": {\n        \"goal_type\": \"roi\",\n        \"goal_value\": 3.0\n    },\n    \"budget\": {\n        \"currency_code\": \"{{currencyCode}}\",\n        \"flights\": [\n            {\n                \"start_date\": \"{{futureStartDate}}\",\n                \"end_date\": \"{{futureEndDate}}\",\n                \"total_budget\": 15000\n            }\n        ]\n    },\n    \"frequency\": {\n        \"frequency_type\": \"even\",\n        \"frequency_interval\": \"hour\",\n        \"frequency_amount\": 2\n    },\n    \"pacing\": {\n        \"spend_cap_type\": \"no-limit\",\n        \"impression_cap_type\": \"no-limit\"\n    },\n    \"site_lists\": [\n        {\n            \"id\": {{siteListID}},\n            \"assigned\": true\n        }\n    ]\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{baseurl}}campaigns",
							"host": [
								"{{baseurl}}campaigns"
							]
						},
						"description": "Creates a campaign with an ROI goal and site list targeting. The `site_lists` array assigns include/exclude lists by `site_list_id`."
					},
					"response": []
				},
				{
					"name": "Create Campaign (CPA with Attribution)",
					"id": "2f45b915-2bc2-4504-8f72-422f0ac02e5a",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"advertiser_id\": {{advertiserID}},\n    \"name\": \"Campaign CPA with Attribution\",\n    \"status\": true,\n    \"service_type\": \"SELF\",\n    \"zone_name\": \"{{zoneName}}\",\n    \"goals\": {\n        \"goal_type\": \"cpa\",\n        \"goal_value\": 15.0,\n        \"goal_category\": \"response\"\n    },\n    \"budget\": {\n        \"currency_code\": \"{{currencyCode}}\",\n        \"flights\": [\n            {\n                \"start_date\": \"{{futureStartDate}}\",\n                \"end_date\": \"{{futureEndDate}}\",\n                \"total_budget\": 10000\n            }\n        ]\n    },\n    \"frequency\": {\n        \"frequency_type\": \"no-limit\"\n    },\n    \"pacing\": {\n        \"spend_cap_type\": \"no-limit\",\n        \"impression_cap_type\": \"no-limit\"\n    },\n    \"attribution\": {\n        \"has_custom_attribution\": true,\n        \"custom_attribution_source\": \"T1 MTA via Neustar\",\n        \"pc_window_minutes\": 10080,\n        \"pv_window_minutes\": 1440,\n        \"pv_pct\": 50,\n        \"merit_pixel_id\": {{pixelBundleID}},\n        \"conversion_type\": \"variable\",\n        \"conversion_variable_minutes\": 1\n    }\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{baseurl}}campaigns",
							"host": [
								"{{baseurl}}campaigns"
							]
						},
						"description": "Creates a campaign with a CPA goal and custom attribution. Demonstrates `merit_pixel_id`, `pc_window_minutes`, `pv_window_minutes`, and `custom_attribution_source`."
					},
					"response": []
				},
				{
					"name": "Create Campaign (Multi-Flight Budget)",
					"id": "af320bce-d24c-44a0-b610-7d32e0310c66",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"advertiser_id\": {{advertiserID}},\n    \"name\": \"Campaign Multi-Flight Budget\",\n    \"status\": true,\n    \"service_type\": \"SELF\",\n    \"goals\": {\n        \"goal_type\": \"spend\",\n        \"goal_value\": 100\n    },\n    \"budget\": {\n        \"currency_code\": \"{{currencyCode}}\",\n        \"flights\": [\n            {\n                \"start_date\": \"{{flight1Start}}\",\n                \"end_date\": \"{{flight1End}}\",\n                \"total_budget\": 1000\n            },\n            {\n                \"start_date\": \"{{flight2Start}}\",\n                \"end_date\": \"{{flight2End}}\",\n                \"total_budget\": 2000\n            },\n            {\n                \"start_date\": \"{{flight3Start}}\",\n                \"end_date\": \"{{flight3End}}\",\n                \"total_budget\": 3000\n            }\n        ]\n    },\n    \"frequency\": {\n        \"frequency_type\": \"no-limit\"\n    },\n    \"pacing\": {\n        \"spend_cap_type\": \"no-limit\",\n        \"impression_cap_type\": \"no-limit\"\n    }\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{baseurl}}campaigns",
							"host": [
								"{{baseurl}}campaigns"
							]
						},
						"description": "Creates a campaign with multiple budget flights covering consecutive date ranges. Each flight has its own `total_budget`, `start_date`, and `end_date`. Flights must not overlap."
					},
					"response": []
				},
				{
					"name": "Get Campaign (Multi-Flight Budget)",
					"id": "467bbe6c-2d1e-4a77-aefd-d16436738be0",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}campaigns/{{multiFlightCampaignID}}",
							"host": [
								"{{baseurl}}campaigns"
							],
							"path": [
								"{{multiFlightCampaignID}}"
							],
							"query": [
								{
									"key": "full",
									"value": "*"
								}
							]
						},
						"description": "Retrieves a multi-flight campaign with `full=*` to see all budget flights in the response."
					},
					"response": []
				},
				{
					"name": "List Budget Flights (Multi-Flight)",
					"id": "4ee97f30-0735-4833-be50-7ec99f05cb9e",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}campaigns/{{multiFlightCampaignID}}/budget_flights?full=*&page_limit=100&page_offset=0",
							"host": [
								"{{baseurl}}campaigns/{{multiFlightCampaignID}}/budget_flights"
							],
							"query": [
								{
									"key": "full",
									"value": "*"
								},
								{
									"key": "page_limit",
									"value": "100"
								},
								{
									"key": "page_offset",
									"value": "0"
								}
							]
						},
						"description": "Lists all budget flights for a specific campaign, showing `total_budget`, dates, and `is_relevant` status."
					},
					"response": []
				},
				{
					"name": "Get Campaign",
					"id": "11957f42-50c7-4053-9ce0-90769f66d34c",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}campaigns/{{campaignID}}",
							"host": [
								"{{baseurl}}campaigns"
							],
							"path": [
								"{{campaignID}}"
							],
							"query": [
								{
									"key": "extended",
									"value": "true",
									"disabled": true
								}
							]
						},
						"description": "Retrieves a single campaign by ID. Supports `extended=true` for parent advertiser/agency data."
					},
					"response": []
				},
				{
					"name": "Update Campaign",
					"id": "c915480c-ef34-4341-8679-d3cbd2a4cf65",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"name\": \"Campaign {{$randomCompanyName}}\",\n    \"status\": true,\n    \"archived\": false,\n    \"targeting_identity_level\": \"INHERIT\",\n    \"budget\": {\n        \"currency_code\": \"{{currencyCode}}\",\n        \"margin_pct\": 0,\n        \"dynamic_budget_allocation_type\": \"OFF\"\n    },\n    \"pacing\": {\n        \"pacing_alert\": 0,\n        \"spend_pace_ahead\": false,\n        \"impression_pace_ahead\": false\n    },\n    \"viewability\": {\n        \"type\": \"AUTO_TAG\",\n        \"sample_rate\": 100\n    },\n    \"identity\": {\n        \"device_graph_only\": false,\n        \"connected_id_type\": \"INHERIT\"\n    },\n    \"ad_server\": {\n        \"ad_server_id\": 1,\n        \"use_default_ad_server\": true,\n        \"ad_server_fee\": 0\n    },\n    \"inventory\": {\n        \"ads_txt_verified\": \"ANY\",\n        \"minimize_multi_ads\": false,\n        \"override_suspicious_traffic_filter\": false,\n        \"suspicious_traffic_filter_level\": 25,\n        \"dcs_data_is_campaign_level\": false,\n        \"restrict_targeting_to_deterministic_id\": false,\n        \"restrict_targeting_to_same_device_id\": false\n    },\n    \"vendor_contracts\": [],\n    \"custom_brain_selections\": []\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{baseurl}}campaigns/{{campaignID}}",
							"host": [
								"{{baseurl}}campaigns"
							],
							"path": [
								"{{campaignID}}"
							]
						},
						"description": "Updates campaign properties including name, status, goals, and budget."
					},
					"response": []
				},
				{
					"name": "Update Campaign (Pacing & Frequency)",
					"id": "55ef613c-6ce2-4292-9018-413ad78ab55e",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"name\": \"Campaign Pacing {{$randomCompanyName}}\",\n    \"status\": true,\n    \"frequency\": {\n        \"frequency_type\": \"even\",\n        \"frequency_interval\": \"day\",\n        \"frequency_amount\": 3,\n        \"frequency_optimization\": true\n    },\n    \"pacing\": {\n        \"spend_cap_type\": \"even\",\n        \"spend_cap_amount\": 150,\n        \"impression_cap_type\": \"even\",\n        \"impression_cap_amount\": 25000,\n        \"brain_intraday_pacing\": true\n    },\n    \"mfa_avoidance\": \"EXCLUDE_MFA\"\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{baseurl}}campaigns/{{campaignID}}",
							"host": [
								"{{baseurl}}campaigns"
							],
							"path": [
								"{{campaignID}}"
							]
						},
						"description": "Updates only pacing and frequency settings on an existing campaign without modifying other fields."
					},
					"response": []
				},
				{
					"name": "Copy Campaign (All Flags)",
					"id": "e04d3da5-fa20-46e8-9e53-15a92fe6bb42",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"name\": \"Copied Campaign Full\",\n    \"status\": true,\n    \"advertiser_id\": {{advertiserID}},\n    \"start_date\": \"{{futureStartDate}}\",\n    \"end_date\": \"{{futureEndDate}}\",\n    \"merit_pixel_id\": {{pixelBundleID}},\n    \"copy_assigned_site_lists\": true,\n    \"copy_vendor_contracts\": true,\n    \"copy_brain_settings\": true,\n    \"copy_audience_in_brain\": true,\n    \"copy_viewability\": true,\n    \"budget\": {\n        \"flights\": [\n            {\n                \"start_date\": \"{{futureStartDate}}\",\n                \"end_date\": \"{{futureEndDate}}\",\n                \"total_budget\": 2000,\n                \"total_impression_budget\": null\n            }\n        ]\n    }\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{baseurl}}campaigns/{{campaignID}}/copy",
							"host": [
								"{{baseurl}}campaigns/{{campaignID}}/copy"
							]
						},
						"description": "Copies a campaign with all flags: `copy_strategies`, `copy_budget_flights`, `copy_campaign_site_lists`, `copy_t1_as`. Returns 201."
					},
					"response": []
				},
				{
					"name": "Get Original Campaign (for copy comparison)",
					"id": "dd18d879-146c-4ecf-8c92-01517c96a7cc",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}campaigns/{{campaignID}}",
							"host": [
								"{{baseurl}}campaigns"
							],
							"path": [
								"{{campaignID}}"
							],
							"query": [
								{
									"key": "full",
									"value": "*"
								}
							]
						},
						"description": "Fetches the original campaign with `full=*` for comparison with the copy."
					},
					"response": []
				},
				{
					"name": "Get Copied Campaign (compare with original)",
					"id": "2627023f-be43-45b5-8a78-1f7190d912de",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}campaigns/{{copiedCampaignID}}",
							"host": [
								"{{baseurl}}campaigns"
							],
							"path": [
								"{{copiedCampaignID}}"
							],
							"query": [
								{
									"key": "full",
									"value": "*"
								}
							]
						},
						"description": "Fetches the copied campaign with `full=*` to verify the copy operation."
					},
					"response": []
				},
				{
					"name": "Copy Campaign (Minimal)",
					"id": "c8d763dc-e613-45af-b174-dc7359d9d55b",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"name\": \"Copied Campaign Minimal\",\n    \"status\": false,\n    \"budget\": {\n        \"flights\": [\n            {\n                \"start_date\": \"{{futureStartDate}}\",\n                \"end_date\": \"{{futureEndDate}}\",\n                \"total_budget\": 500\n            }\n        ]\n    }\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{baseurl}}campaigns/{{campaignID}}/copy",
							"host": [
								"{{baseurl}}campaigns/{{campaignID}}/copy"
							]
						},
						"description": "Copies a campaign with minimal flags \u2014 creates a bare copy without strategies or site lists."
					},
					"response": []
				},
				{
					"name": "List Campaigns",
					"id": "39bdf63b-81f5-4f76-bc5e-cb8b29445206",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}campaigns?full=*&sort_by=-id&page_limit=100&page_offset=0",
							"host": [
								"{{baseurl}}campaigns"
							],
							"query": [
								{
									"key": "full",
									"value": "*"
								},
								{
									"key": "sort_by",
									"value": "-id"
								},
								{
									"key": "page_limit",
									"value": "100"
								},
								{
									"key": "page_offset",
									"value": "0"
								},
								{
									"key": "q",
									"value": "advertiser_id=={{advertiserID}}",
									"disabled": true
								},
								{
									"key": "with",
									"value": "advertiser,agency",
									"disabled": true
								},
								{
									"key": "extended",
									"value": "true",
									"disabled": true
								},
								{
									"key": "live_only",
									"value": "true",
									"disabled": true
								},
								{
									"key": "filter_expired",
									"value": "true",
									"disabled": true
								}
							]
						},
						"description": "Lists campaigns. Supports `q` filtering by `advertiser_id`, `with` expansion, `extended`, `live_only`, and `filter_expired` parameters."
					},
					"response": []
				},
				{
					"name": "Get Campaign History",
					"id": "434d14a7-fa19-4e1a-8bb3-dac8c6283165",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}campaigns/{{campaignID}}/history",
							"host": [
								"{{baseurl}}campaigns"
							],
							"path": [
								"{{campaignID}}",
								"history"
							]
						},
						"description": "Returns the audit log for a campaign."
					},
					"response": []
				}
			],
			"id": "caada0aa-2e44-416a-995d-1194c5164d38"
		},
		{
			"name": "Campaign Budget Flights",
			"description": "Budget flight listing and audit history. Budget flights are created and updated via the campaign budget object.",
			"item": [
				{
					"name": "List Budget Flights",
					"id": "e02fa924-bd8b-4764-a409-5f584fb9ce76",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}campaigns/{{campaignID}}/budget_flights?full=*&page_limit=100&page_offset=0",
							"host": [
								"{{baseurl}}campaigns/{{campaignID}}/budget_flights"
							],
							"query": [
								{
									"key": "full",
									"value": "*"
								},
								{
									"key": "page_limit",
									"value": "100"
								},
								{
									"key": "page_offset",
									"value": "0"
								}
							]
						},
						"description": "Lists all budget flights for a campaign. Budget flights are created and updated via the campaign budget object."
					},
					"response": []
				},
				{
					"name": "Get Budget Flight History",
					"id": "7999e6fc-31e0-4b9e-937d-de7912fbf8ac",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}campaigns/{{campaignID}}/budget_flights/history",
							"host": [
								"{{baseurl}}campaigns/{{campaignID}}"
							],
							"path": [
								"budget_flights",
								"history"
							]
						},
						"description": "Returns the audit log for budget flight changes."
					},
					"response": []
				}
			],
			"id": "84d8d0aa-c7a0-4088-b741-cb7acdf6eae9"
		},
		{
			"name": "Targeting",
			"description": "Fetches technology target values (browsers, OS, devices, connection speeds, countries, regions, video dimensions) used for strategy targeting.",
			"item": [
				{
					"name": "List Browsers",
					"id": "5121c9cd-6817-4c5d-9ae1-e797cc3a98e1",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}technology_target_values?full=*&dimension_code=BSER&page_limit=100&page_offset=0&sort_by=name",
							"host": [
								"{{baseurl}}technology_target_values"
							],
							"query": [
								{
									"key": "full",
									"value": "*"
								},
								{
									"key": "dimension_code",
									"value": "BSER"
								},
								{
									"key": "page_limit",
									"value": "100"
								},
								{
									"key": "page_offset",
									"value": "0"
								},
								{
									"key": "sort_by",
									"value": "name"
								},
								{
									"key": "name",
									"value": "",
									"disabled": true
								},
								{
									"key": "full_path",
									"value": "",
									"disabled": true
								}
							]
						},
						"description": "Lists browser targeting values (dimension `BSER`). Use these IDs in strategy technology targeting."
					},
					"response": []
				},
				{
					"name": "List Browser Languages",
					"id": "9bd23da6-dc85-4748-81e0-a752acb8a732",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}technology_target_values?full=*&dimension_code=BRLG&page_limit=100&page_offset=0&sort_by=name",
							"host": [
								"{{baseurl}}technology_target_values"
							],
							"query": [
								{
									"key": "full",
									"value": "*"
								},
								{
									"key": "dimension_code",
									"value": "BRLG"
								},
								{
									"key": "page_limit",
									"value": "100"
								},
								{
									"key": "page_offset",
									"value": "0"
								},
								{
									"key": "sort_by",
									"value": "name"
								},
								{
									"key": "name",
									"value": "",
									"disabled": true
								},
								{
									"key": "full_path",
									"value": "",
									"disabled": true
								}
							]
						},
						"description": "Lists browser language targeting values (dimension `BRLG`)."
					},
					"response": []
				},
				{
					"name": "List Operating Systems",
					"id": "bc6925d1-399d-4b65-8859-30594744f4f6",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}technology_target_values?full=*&dimension_code=OSXX&page_limit=100&page_offset=0&sort_by=name",
							"host": [
								"{{baseurl}}technology_target_values"
							],
							"query": [
								{
									"key": "full",
									"value": "*"
								},
								{
									"key": "dimension_code",
									"value": "OSXX"
								},
								{
									"key": "page_limit",
									"value": "100"
								},
								{
									"key": "page_offset",
									"value": "0"
								},
								{
									"key": "sort_by",
									"value": "name"
								},
								{
									"key": "name",
									"value": "",
									"disabled": true
								},
								{
									"key": "full_path",
									"value": "",
									"disabled": true
								}
							]
						},
						"description": "Lists OS targeting values (dimension `OSXX`)."
					},
					"response": []
				},
				{
					"name": "List Devices",
					"id": "d8534c38-3e8f-4e89-aab2-213a536c530b",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}technology_target_values?full=*&dimension_code=DVCE&page_limit=100&page_offset=0&sort_by=name",
							"host": [
								"{{baseurl}}technology_target_values"
							],
							"query": [
								{
									"key": "full",
									"value": "*"
								},
								{
									"key": "dimension_code",
									"value": "DVCE"
								},
								{
									"key": "page_limit",
									"value": "100"
								},
								{
									"key": "page_offset",
									"value": "0"
								},
								{
									"key": "sort_by",
									"value": "name"
								},
								{
									"key": "name",
									"value": "",
									"disabled": true
								},
								{
									"key": "full_path",
									"value": "",
									"disabled": true
								}
							]
						},
						"description": "Lists device type targeting values (dimension `DVCE`) \u2014 Desktop, Mobile, Tablet, etc."
					},
					"response": []
				},
				{
					"name": "List Device Models",
					"id": "ac514f89-b90d-4a72-a02f-f0ef6c3815d0",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}technology_target_values?full=*&dimension_code=DVMD&page_limit=100&page_offset=0&sort_by=name",
							"host": [
								"{{baseurl}}technology_target_values"
							],
							"query": [
								{
									"key": "full",
									"value": "*"
								},
								{
									"key": "dimension_code",
									"value": "DVMD"
								},
								{
									"key": "page_limit",
									"value": "100"
								},
								{
									"key": "page_offset",
									"value": "0"
								},
								{
									"key": "sort_by",
									"value": "name"
								},
								{
									"key": "name",
									"value": "",
									"disabled": true
								},
								{
									"key": "full_path",
									"value": "",
									"disabled": true
								}
							]
						},
						"description": "Lists device model targeting values (dimension `DVMD`)."
					},
					"response": []
				},
				{
					"name": "List Connection Speeds",
					"id": "fc4299c5-5f10-40bd-9fed-e8a6b623ac54",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}technology_target_values?full=*&dimension_code=CSPD&page_limit=100&page_offset=0&sort_by=name",
							"host": [
								"{{baseurl}}technology_target_values"
							],
							"query": [
								{
									"key": "full",
									"value": "*"
								},
								{
									"key": "dimension_code",
									"value": "CSPD"
								},
								{
									"key": "page_limit",
									"value": "100"
								},
								{
									"key": "page_offset",
									"value": "0"
								},
								{
									"key": "sort_by",
									"value": "name"
								},
								{
									"key": "name",
									"value": "",
									"disabled": true
								},
								{
									"key": "full_path",
									"value": "",
									"disabled": true
								}
							]
						},
						"description": "Lists connection speed targeting values (dimension `CSPD`)."
					},
					"response": []
				},
				{
					"name": "List ISPs",
					"id": "f79b17a0-f94a-4e2c-b45e-136a1c327118",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}technology_target_values?full=*&dimension_code=ISPX&page_limit=100&page_offset=0&sort_by=name",
							"host": [
								"{{baseurl}}technology_target_values"
							],
							"query": [
								{
									"key": "full",
									"value": "*"
								},
								{
									"key": "dimension_code",
									"value": "ISPX"
								},
								{
									"key": "page_limit",
									"value": "100"
								},
								{
									"key": "page_offset",
									"value": "0"
								},
								{
									"key": "sort_by",
									"value": "name"
								},
								{
									"key": "name",
									"value": "",
									"disabled": true
								},
								{
									"key": "full_path",
									"value": "",
									"disabled": true
								}
							]
						},
						"description": "Lists ISP targeting values (dimension `ISPX`)."
					},
					"response": []
				},
				{
					"name": "List Inventory Sources",
					"id": "3d5900fa-4224-403e-bd37-ef94e36e57ab",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}technology_target_values?full=*&dimension_code=INVT&page_limit=100&page_offset=0&sort_by=name",
							"host": [
								"{{baseurl}}technology_target_values"
							],
							"query": [
								{
									"key": "full",
									"value": "*"
								},
								{
									"key": "dimension_code",
									"value": "INVT"
								},
								{
									"key": "page_limit",
									"value": "100"
								},
								{
									"key": "page_offset",
									"value": "0"
								},
								{
									"key": "sort_by",
									"value": "name"
								},
								{
									"key": "name",
									"value": "",
									"disabled": true
								},
								{
									"key": "full_path",
									"value": "",
									"disabled": true
								}
							]
						},
						"description": "Lists inventory source targeting values (dimension `INVT`)."
					},
					"response": []
				},
				{
					"name": "List Countries",
					"id": "42357e12-139b-42e5-88b9-838d0a6cecbf",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}technology_target_values?full=*&dimension_code=COUNTRY&page_limit=100&page_offset=0&sort_by=name",
							"host": [
								"{{baseurl}}technology_target_values"
							],
							"query": [
								{
									"key": "full",
									"value": "*"
								},
								{
									"key": "dimension_code",
									"value": "COUNTRY"
								},
								{
									"key": "page_limit",
									"value": "100"
								},
								{
									"key": "page_offset",
									"value": "0"
								},
								{
									"key": "sort_by",
									"value": "name"
								},
								{
									"key": "name",
									"value": "",
									"disabled": true
								},
								{
									"key": "full_path",
									"value": "",
									"disabled": true
								}
							]
						},
						"description": "Lists country targeting values (dimension `COUNTRY`) for geographic targeting."
					},
					"response": []
				},
				{
					"name": "List Regions",
					"id": "8486304c-ecc7-4884-8798-09071fc628f6",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}technology_target_values?full=*&dimension_code=REGN&page_limit=100&page_offset=0&sort_by=name",
							"host": [
								"{{baseurl}}technology_target_values"
							],
							"query": [
								{
									"key": "full",
									"value": "*"
								},
								{
									"key": "dimension_code",
									"value": "REGN"
								},
								{
									"key": "page_limit",
									"value": "100"
								},
								{
									"key": "page_offset",
									"value": "0"
								},
								{
									"key": "sort_by",
									"value": "name"
								},
								{
									"key": "name",
									"value": "",
									"disabled": true
								},
								{
									"key": "full_path",
									"value": "",
									"disabled": true
								}
							]
						},
						"description": "Lists region/state targeting values (dimension `REGN`)."
					},
					"response": []
				},
				{
					"name": "List DMAs",
					"id": "ed400365-1480-449f-b48f-2bc087203fee",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}technology_target_values?full=*&dimension_code=DMAX&page_limit=100&page_offset=0&sort_by=name",
							"host": [
								"{{baseurl}}technology_target_values"
							],
							"query": [
								{
									"key": "full",
									"value": "*"
								},
								{
									"key": "dimension_code",
									"value": "DMAX"
								},
								{
									"key": "page_limit",
									"value": "100"
								},
								{
									"key": "page_offset",
									"value": "0"
								},
								{
									"key": "sort_by",
									"value": "name"
								},
								{
									"key": "name",
									"value": "",
									"disabled": true
								},
								{
									"key": "full_path",
									"value": "",
									"disabled": true
								}
							]
						},
						"description": "Lists DMA (Designated Market Area) targeting values (dimension `DMAX`)."
					},
					"response": []
				},
				{
					"name": "List Video Audibility",
					"id": "a95a20fb-50bb-4333-87bb-47fbbed2736b",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}technology_target_values?full=*&dimension_code=VAUD&page_limit=100&page_offset=0&sort_by=name",
							"host": [
								"{{baseurl}}technology_target_values"
							],
							"query": [
								{
									"key": "full",
									"value": "*"
								},
								{
									"key": "dimension_code",
									"value": "VAUD"
								},
								{
									"key": "page_limit",
									"value": "100"
								},
								{
									"key": "page_offset",
									"value": "0"
								},
								{
									"key": "sort_by",
									"value": "name"
								},
								{
									"key": "name",
									"value": "",
									"disabled": true
								},
								{
									"key": "full_path",
									"value": "",
									"disabled": true
								}
							]
						},
						"description": "Lists video audibility targeting values (dimension `VAUD`)."
					},
					"response": []
				},
				{
					"name": "List Video Context",
					"id": "56f56330-7a7f-41cd-9627-06e713400eba",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}technology_target_values?full=*&dimension_code=VCON&page_limit=100&page_offset=0&sort_by=name",
							"host": [
								"{{baseurl}}technology_target_values"
							],
							"query": [
								{
									"key": "full",
									"value": "*"
								},
								{
									"key": "dimension_code",
									"value": "VCON"
								},
								{
									"key": "page_limit",
									"value": "100"
								},
								{
									"key": "page_offset",
									"value": "0"
								},
								{
									"key": "sort_by",
									"value": "name"
								},
								{
									"key": "name",
									"value": "",
									"disabled": true
								},
								{
									"key": "full_path",
									"value": "",
									"disabled": true
								}
							]
						},
						"description": "Lists video context targeting values (dimension `VCON`)."
					},
					"response": []
				},
				{
					"name": "List Video Linearity",
					"id": "47daad53-da32-461e-a146-4708a18e6c95",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}technology_target_values?full=*&dimension_code=VLIN&page_limit=100&page_offset=0&sort_by=name",
							"host": [
								"{{baseurl}}technology_target_values"
							],
							"query": [
								{
									"key": "full",
									"value": "*"
								},
								{
									"key": "dimension_code",
									"value": "VLIN"
								},
								{
									"key": "page_limit",
									"value": "100"
								},
								{
									"key": "page_offset",
									"value": "0"
								},
								{
									"key": "sort_by",
									"value": "name"
								},
								{
									"key": "name",
									"value": "",
									"disabled": true
								},
								{
									"key": "full_path",
									"value": "",
									"disabled": true
								}
							]
						},
						"description": "Lists video linearity targeting values (dimension `VLIN`) \u2014 linear vs. non-linear."
					},
					"response": []
				},
				{
					"name": "List Video Placement",
					"id": "09f1c0a3-59a6-48ee-b073-c48799832828",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}technology_target_values?full=*&dimension_code=VPLC&page_limit=100&page_offset=0&sort_by=name",
							"host": [
								"{{baseurl}}technology_target_values"
							],
							"query": [
								{
									"key": "full",
									"value": "*"
								},
								{
									"key": "dimension_code",
									"value": "VPLC"
								},
								{
									"key": "page_limit",
									"value": "100"
								},
								{
									"key": "page_offset",
									"value": "0"
								},
								{
									"key": "sort_by",
									"value": "name"
								},
								{
									"key": "name",
									"value": "",
									"disabled": true
								},
								{
									"key": "full_path",
									"value": "",
									"disabled": true
								}
							]
						},
						"description": "Lists video placement targeting values (dimension `VPLC`) \u2014 in-stream, in-banner, etc."
					},
					"response": []
				},
				{
					"name": "List Video Player Size",
					"id": "406351a1-d9fb-4222-82d3-025470294136",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}technology_target_values?full=*&dimension_code=VPSZ&page_limit=100&page_offset=0&sort_by=name",
							"host": [
								"{{baseurl}}technology_target_values"
							],
							"query": [
								{
									"key": "full",
									"value": "*"
								},
								{
									"key": "dimension_code",
									"value": "VPSZ"
								},
								{
									"key": "page_limit",
									"value": "100"
								},
								{
									"key": "page_offset",
									"value": "0"
								},
								{
									"key": "sort_by",
									"value": "name"
								},
								{
									"key": "name",
									"value": "",
									"disabled": true
								},
								{
									"key": "full_path",
									"value": "",
									"disabled": true
								}
							]
						},
						"description": "Lists video player size targeting values (dimension `VPSZ`)."
					},
					"response": []
				},
				{
					"name": "List Video Skippability",
					"id": "d686bc67-d13a-49be-8cc2-6203cb40912b",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}technology_target_values?full=*&dimension_code=VSKP&page_limit=100&page_offset=0&sort_by=name",
							"host": [
								"{{baseurl}}technology_target_values"
							],
							"query": [
								{
									"key": "full",
									"value": "*"
								},
								{
									"key": "dimension_code",
									"value": "VSKP"
								},
								{
									"key": "page_limit",
									"value": "100"
								},
								{
									"key": "page_offset",
									"value": "0"
								},
								{
									"key": "sort_by",
									"value": "name"
								},
								{
									"key": "name",
									"value": "",
									"disabled": true
								},
								{
									"key": "full_path",
									"value": "",
									"disabled": true
								}
							]
						},
						"description": "Lists video skippability targeting values (dimension `VSKP`)."
					},
					"response": []
				},
				{
					"name": "List Location Dimensions (combined)",
					"id": "9b2fbb67-724e-438c-84e2-c98c99fd4686",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}technology_target_values?full=*&dimension_code=COUNTRY,REGN&page_limit=100&page_offset=0&sort_by=name",
							"host": [
								"{{baseurl}}technology_target_values"
							],
							"query": [
								{
									"key": "full",
									"value": "*"
								},
								{
									"key": "dimension_code",
									"value": "COUNTRY,REGN"
								},
								{
									"key": "page_limit",
									"value": "100"
								},
								{
									"key": "page_offset",
									"value": "0"
								},
								{
									"key": "sort_by",
									"value": "name"
								}
							]
						},
						"description": "Fetches multiple location dimensions in a single request by passing comma-separated dimension codes."
					},
					"response": []
				},
				{
					"name": "List Video Dimensions (combined)",
					"id": "497bcc91-ead4-4ef0-bd23-c3c793da7c9a",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}technology_target_values?full=*&dimension_code=VAUD,VCON,VLIN,VPLC,VPSZ,VSKP&page_limit=100&page_offset=0&sort_by=name",
							"host": [
								"{{baseurl}}technology_target_values"
							],
							"query": [
								{
									"key": "full",
									"value": "*"
								},
								{
									"key": "dimension_code",
									"value": "VAUD,VCON,VLIN,VPLC,VPSZ,VSKP"
								},
								{
									"key": "page_limit",
									"value": "100"
								},
								{
									"key": "page_offset",
									"value": "0"
								},
								{
									"key": "sort_by",
									"value": "name"
								}
							]
						},
						"description": "Fetches all video dimensions (VAUD, VCON, VLIN, VPLC, VPSZ, VSKP) in a single request."
					},
					"response": []
				},
				{
					"name": "List Targeting Segment Objectives",
					"id": "a3495d8d-744d-432f-822f-49c30b0da0c7",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}targeting_segment_objectives?full=*&sort_by=-id&page_limit=100&page_offset=0",
							"host": [
								"{{baseurl}}targeting_segment_objectives"
							],
							"query": [
								{
									"key": "full",
									"value": "*"
								},
								{
									"key": "sort_by",
									"value": "-id"
								},
								{
									"key": "page_limit",
									"value": "100"
								},
								{
									"key": "page_offset",
									"value": "0"
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Get Targeting Segment Objective",
					"id": "81524566-362e-4b11-a41a-0ab023f1db5f",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}targeting_segment_objectives/{{targetingSegmentObjectiveID}}",
							"host": [
								"{{baseurl}}targeting_segment_objectives"
							],
							"path": [
								"{{targetingSegmentObjectiveID}}"
							]
						}
					},
					"response": []
				}
			],
			"id": "9618248e-360f-414f-a34a-dd77bbdaeb06"
		},
		{
			"name": "Audience / Contextual Segments",
			"description": "Browse contextual and audience segments, manage segment groups, and get CPM estimates for targeting.",
			"item": [
				{
					"name": "List Contextual Segments (Root)",
					"id": "2bffa41b-b238-45a1-9b44-fbb031e676e9",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}path_targeting_segments?full=*&page_limit=100&page_offset=0&sort_by=name&q=parent_targeting_segment_id==null",
							"host": [
								"{{baseurl}}path_targeting_segments"
							],
							"query": [
								{
									"key": "full",
									"value": "*"
								},
								{
									"key": "page_limit",
									"value": "100"
								},
								{
									"key": "page_offset",
									"value": "0"
								},
								{
									"key": "sort_by",
									"value": "name"
								},
								{
									"key": "q",
									"value": "parent_targeting_segment_id==null"
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "List Contextual Segments (Search by Name)",
					"id": "739e931c-6f1e-4cc5-b4ab-3fb2f1a2e4f1",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}path_targeting_segments?full=*&page_limit=100&page_offset=0&sort_by=name&q=name=:auto",
							"host": [
								"{{baseurl}}path_targeting_segments"
							],
							"query": [
								{
									"key": "full",
									"value": "*"
								},
								{
									"key": "page_limit",
									"value": "100"
								},
								{
									"key": "page_offset",
									"value": "0"
								},
								{
									"key": "sort_by",
									"value": "name"
								},
								{
									"key": "q",
									"value": "name=:auto"
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "List Contextual Segments (By Parent ID)",
					"id": "18645440-0d2e-4ee1-aff2-55c7a0f790c6",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}path_targeting_segments?full=*&page_limit=100&page_offset=0&sort_by=name&q=parent_targeting_segment_id=={{contextualSegmentParentID}}",
							"host": [
								"{{baseurl}}path_targeting_segments"
							],
							"query": [
								{
									"key": "full",
									"value": "*"
								},
								{
									"key": "page_limit",
									"value": "100"
								},
								{
									"key": "page_offset",
									"value": "0"
								},
								{
									"key": "sort_by",
									"value": "name"
								},
								{
									"key": "q",
									"value": "parent_targeting_segment_id=={{contextualSegmentParentID}}"
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Get Contextual Segment (By ID)",
					"id": "d6428ba2-2572-4bb5-b179-752ed2edfcc9",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}path_targeting_segments?full=*&q=id=={{contextualSegmentParentID}}",
							"host": [
								"{{baseurl}}path_targeting_segments"
							],
							"query": [
								{
									"key": "full",
									"value": "*"
								},
								{
									"key": "q",
									"value": "id=={{contextualSegmentParentID}}"
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "List Contextual Segments (Buyable)",
					"id": "6b554aac-74fc-497b-ae4a-2fc20bf2ae5a",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}path_targeting_segments?full=*&page_limit=10&page_offset=0&sort_by=name&q=buyable==true",
							"host": [
								"{{baseurl}}path_targeting_segments"
							],
							"query": [
								{
									"key": "full",
									"value": "*"
								},
								{
									"key": "page_limit",
									"value": "10"
								},
								{
									"key": "page_offset",
									"value": "0"
								},
								{
									"key": "sort_by",
									"value": "name"
								},
								{
									"key": "q",
									"value": "buyable==true"
								},
								{
									"key": "currency_code",
									"value": "USD",
									"disabled": true
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Create Segment Group",
					"id": "1208273e-f867-4c0f-9ed9-84da4cbc9b7f",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"name\": \"E2E Contextual Segment Group\",\n    \"type\": \"CONTEXTUAL\",\n    \"organization_id\": {{organizationID}},\n    \"status\": true,\n    \"segment_subgroup\": [\n        {\n            \"segment_operator\": \"OR\",\n            \"segment_members\": [\n                {\n                    \"segment_id\": {{contextualSegmentID1}},\n                    \"segment_type\": \"CONTEXTUAL\"\n                },\n                {\n                    \"segment_id\": {{contextualSegmentID2}},\n                    \"segment_type\": \"CONTEXTUAL\"\n                }\n            ]\n        }\n    ]\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{baseurl}}segment_groups",
							"host": [
								"{{baseurl}}segment_groups"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get Segment Group",
					"id": "ad6d5c91-0cc7-48de-89d8-f51c65a5b3c7",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}segment_groups/{{segmentGroupID}}",
							"host": [
								"{{baseurl}}segment_groups"
							],
							"path": [
								"{{segmentGroupID}}"
							]
						}
					},
					"response": []
				},
				{
					"name": "Update Segment Group",
					"id": "eaa1461a-bf1e-4e94-b86b-fd2d85b776ba",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"name\": \"E2E Contextual Segment Group Updated\",\n    \"status\": true,\n    \"segment_subgroup\": [\n        {\n            \"segment_operator\": \"AND\",\n            \"segment_members\": [\n                {\n                    \"segment_id\": {{contextualSegmentID1}},\n                    \"segment_type\": \"CONTEXTUAL\"\n                }\n            ]\n        }\n    ]\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{baseurl}}segment_groups/{{segmentGroupID}}",
							"host": [
								"{{baseurl}}segment_groups"
							],
							"path": [
								"{{segmentGroupID}}"
							]
						}
					},
					"response": []
				},
				{
					"name": "List Segment Groups",
					"id": "964b4ec5-9e7f-48fc-b224-1a93d73ede86",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}segment_groups?full=*&sort_by=-id&page_limit=100&page_offset=0",
							"host": [
								"{{baseurl}}segment_groups"
							],
							"query": [
								{
									"key": "full",
									"value": "*"
								},
								{
									"key": "sort_by",
									"value": "-id"
								},
								{
									"key": "page_limit",
									"value": "100"
								},
								{
									"key": "page_offset",
									"value": "0"
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Get Segment Group History",
					"id": "620d23a0-c6a1-4f53-8b8c-e3c0060c527c",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}segment_groups/{{segmentGroupID}}/history",
							"host": [
								"{{baseurl}}segment_groups"
							],
							"path": [
								"{{segmentGroupID}}",
								"history"
							]
						}
					},
					"response": []
				},
				{
					"name": "List Segment Group Assignments",
					"id": "a7b7f1bc-09f9-4bb3-8255-7d57579f38b1",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}segment_groups/{{segmentGroupID}}/assignments?full=*&sort_by=-id&page_limit=100&page_offset=0",
							"host": [
								"{{baseurl}}segment_groups/{{segmentGroupID}}/assignments"
							],
							"query": [
								{
									"key": "full",
									"value": "*"
								},
								{
									"key": "sort_by",
									"value": "-id"
								},
								{
									"key": "page_limit",
									"value": "100"
								},
								{
									"key": "page_offset",
									"value": "0"
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "List Audience Segments (Root)",
					"id": "4e30e404-125c-488d-bc68-b659226f0dff",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}path_audience_segments?full=*&page_limit=100&page_offset=0&sort_by=name&q=parent_audience_segment_id==null",
							"host": [
								"{{baseurl}}path_audience_segments"
							],
							"query": [
								{
									"key": "full",
									"value": "*"
								},
								{
									"key": "page_limit",
									"value": "100"
								},
								{
									"key": "page_offset",
									"value": "0"
								},
								{
									"key": "sort_by",
									"value": "name"
								},
								{
									"key": "q",
									"value": "parent_audience_segment_id==null"
								},
								{
									"key": "advertiser_id",
									"value": "{{advertiserID}}",
									"disabled": true
								},
								{
									"key": "currency_code",
									"value": "USD",
									"disabled": true
								},
								{
									"key": "only_brain_enabled",
									"value": "false",
									"disabled": true
								},
								{
									"key": "parent_id",
									"value": "",
									"disabled": true
								},
								{
									"key": "with",
									"value": "audience_vendor",
									"disabled": true
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "List Audience Segments (By Parent ID)",
					"id": "4ac95672-3116-441d-8b81-6b7cfdadfb6a",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}path_audience_segments?full=*&page_limit=100&page_offset=0&sort_by=name&q=parent_audience_segment_id=={{audienceSegmentParentID}}",
							"host": [
								"{{baseurl}}path_audience_segments"
							],
							"query": [
								{
									"key": "full",
									"value": "*"
								},
								{
									"key": "page_limit",
									"value": "100"
								},
								{
									"key": "page_offset",
									"value": "0"
								},
								{
									"key": "sort_by",
									"value": "name"
								},
								{
									"key": "q",
									"value": "parent_audience_segment_id=={{audienceSegmentParentID}}"
								},
								{
									"key": "advertiser_id",
									"value": "{{advertiserID}}",
									"disabled": true
								},
								{
									"key": "currency_code",
									"value": "USD",
									"disabled": true
								},
								{
									"key": "only_brain_enabled",
									"value": "false",
									"disabled": true
								},
								{
									"key": "parent_id",
									"value": "{{audienceSegmentParentID}}",
									"disabled": true
								},
								{
									"key": "with",
									"value": "audience_vendor",
									"disabled": true
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "List Audience Segments (Buyable)",
					"id": "92858e02-c213-45f9-afa5-2b614c5f139b",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}path_audience_segments?full=*&page_limit=10&page_offset=0&sort_by=name&q=buyable==true",
							"host": [
								"{{baseurl}}path_audience_segments"
							],
							"query": [
								{
									"key": "full",
									"value": "*"
								},
								{
									"key": "page_limit",
									"value": "10"
								},
								{
									"key": "page_offset",
									"value": "0"
								},
								{
									"key": "sort_by",
									"value": "name"
								},
								{
									"key": "q",
									"value": "buyable==true"
								},
								{
									"key": "advertiser_id",
									"value": "{{advertiserID}}",
									"disabled": true
								},
								{
									"key": "currency_code",
									"value": "USD",
									"disabled": true
								},
								{
									"key": "only_brain_enabled",
									"value": "false",
									"disabled": true
								},
								{
									"key": "parent_id",
									"value": "",
									"disabled": true
								},
								{
									"key": "with",
									"value": "audience_vendor",
									"disabled": true
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Contextual Segments CPM Estimate",
					"id": "c86269cb-0529-43c7-abee-fbd472402ca1",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"currency_code\": \"USD\",\n    \"include\": [\n        {\n            \"code\": \"CTX\",\n            \"operator\": \"OR\",\n            \"segments\": [\n                {\n                    \"targeting_segment_id\": {{contextualSegmentID1}},\n                    \"user_cpm\": 1.5\n                }\n            ]\n        }\n    ],\n    \"exclude\": [\n        {\n            \"code\": \"CTX\",\n            \"operator\": \"OR\",\n            \"segments\": [\n                {\n                    \"targeting_segment_id\": {{contextualSegmentID2}},\n                    \"user_cpm\": 0.75\n                }\n            ]\n        }\n    ]\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{baseurl}}contextual_segments/cpm_estimate",
							"host": [
								"{{baseurl}}contextual_segments/cpm_estimate"
							]
						}
					},
					"response": []
				},
				{
					"name": "Audience Segments CPM Estimate",
					"id": "05c1ab41-34fb-4842-a6b7-64648c44e9ed",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"currency_code\": \"USD\",\n    \"include\": [\n        {\n            \"operator\": \"OR\",\n            \"segments\": [\n                {\n                    \"audience_segment_id\": {{audienceSegmentID1}},\n                    \"user_cpm\": 2.0\n                }\n            ]\n        }\n    ],\n    \"exclude\": {\n        \"operator\": \"OR\",\n        \"segments\": [\n            {\n                \"audience_segment_id\": {{audienceSegmentID1}},\n                \"user_cpm\": 1.0\n            }\n        ]\n    }\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{baseurl}}audience_segments/cpm_estimate",
							"host": [
								"{{baseurl}}audience_segments/cpm_estimate"
							]
						}
					},
					"response": []
				}
			],
			"id": "634a280d-6110-4f0f-aa03-38f5a8478cd9"
		},
		{
			"name": "Strategies",
			"description": "CRUD for strategies with multiple goal types, targeting (location, technology, contextual, IP, postal code), inventory, copy operations, and audit history.",
			"item": [
				{
					"name": "Create Strategy (Display - Spend)",
					"id": "cb42e8b6-60c1-4fbd-a506-bb563bf937f1",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"campaign_id\": {{campaignID}},\n    \"name\": \"Strategy Display Spend\",\n    \"description\": \"Display strategy with spend goal\",\n    \"status\": true,\n    \"archived\": false,\n    \"media_type\": \"DISPLAY\",\n    \"type\": \"REM\",\n    \"use_optimization\": false,\n    \"device_graph_only\": false,\n    \"ads_txt_verified\": \"ANY\",\n    \"mfa_avoidance\": \"INHERIT\",\n    \"groups\": [],\n    \"goals\": {\n        \"goal_type\": \"spend\",\n        \"goal_value\": 100,\n        \"min_bid\": 0.1,\n        \"bid_price_is_media_only\": false,\n        \"use_bid_shading\": false\n    },\n    \"budget\": {\n        \"budget\": 500\n    },\n    \"duration\": {\n        \"use_campaign_start\": true,\n        \"use_campaign_end\": true\n    },\n    \"pacing\": {\n        \"pacing_type\": \"even\",\n        \"pacing_amount\": 50,\n        \"pacing_interval\": \"day\",\n        \"pacing_optimization_type\": \"monetary\",\n        \"pacing_optimization_amount\": 50,\n        \"use_dba_strategy_pacing\": \"never\"\n    },\n    \"frequency\": {\n        \"frequency_type\": \"no-limit\",\n        \"frequency_optimization\": false\n    },\n    \"inventory\": {\n        \"supply_type\": \"RTB\",\n        \"run_on_all_pmp\": false,\n        \"run_on_all_exchanges\": true,\n        \"site_restriction_transparent_urls\": false,\n        \"domain_restrictions\": {\n            \"include\": [],\n            \"exclude\": []\n        },\n        \"deals\": [],\n        \"deal_groups\": []\n    }\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{baseurl}}strategies",
							"host": [
								"{{baseurl}}strategies"
							]
						},
						"description": "Creates a display strategy with a spend goal. Spend goals require `use_optimization: false`. Required: `campaign_id`, `name`, `media_type`, `goals`, `budget`, `duration`, `pacing`, `frequency`, `inventory`."
					},
					"response": []
				},
				{
					"name": "Create Strategy (Display - CPC with Location)",
					"id": "f85dd8da-ada4-4959-8f15-790c15f0cf49",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"campaign_id\": {{campaignID}},\n    \"name\": \"Strategy Display CPC Location\",\n    \"status\": true,\n    \"media_type\": \"DISPLAY\",\n    \"type\": \"REM\",\n    \"use_optimization\": true,\n    \"goals\": {\n        \"goal_type\": \"cpc\",\n        \"goal_value\": 2.0,\n        \"max_bid\": 8.0,\n        \"bid_aggressiveness\": 50\n    },\n    \"budget\": {\n        \"budget\": 1000\n    },\n    \"duration\": {\n        \"use_campaign_start\": true,\n        \"use_campaign_end\": true\n    },\n    \"pacing\": {\n        \"pacing_type\": \"even\",\n        \"pacing_amount\": 100,\n        \"pacing_interval\": \"day\"\n    },\n    \"frequency\": {\n        \"frequency_type\": \"even\",\n        \"frequency_interval\": \"day\",\n        \"frequency_amount\": 5\n    },\n    \"inventory\": {\n        \"supply_type\": \"RTB\",\n        \"run_on_all_pmp\": false,\n        \"run_on_all_exchanges\": true\n    },\n    \"targeting\": {\n        \"location\": {\n            \"include\": [\n                {\n                    \"target_value_id\": {{countryTargetID}},\n                    \"code\": \"COUNTRY\"\n                },\n                {\n                    \"target_value_id\": {{regionTargetID}},\n                    \"code\": \"REGN\"\n                }\n            ]\n        },\n        \"contextual\": {\n            \"include\": [\n                {\n                    \"operator\": \"OR\",\n                    \"segments\": [\n                        {\n                            \"targeting_segment_id\": {{contextualSegmentID1}}\n                        },\n                        {\n                            \"targeting_segment_id\": {{contextualSegmentID2}}\n                        }\n                    ]\n                }\n            ]\n        },\n        \"fold_position\": [\n            \"ABOVE\"\n        ]\n    }\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{baseurl}}strategies",
							"host": [
								"{{baseurl}}strategies"
							]
						},
						"description": "Creates a display strategy with CPC goal and geographic targeting. Demonstrates `location` targeting with country and region target IDs in include/exclude arrays."
					},
					"response": []
				},
				{
					"name": "Create Strategy (Video - VCR)",
					"id": "00e7d396-fde4-4410-8fc5-fb726fde3681",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"campaign_id\": {{campaignID}},\n    \"name\": \"Strategy Video VCR\",\n    \"status\": true,\n    \"media_type\": \"VIDEO\",\n    \"type\": \"REM\",\n    \"use_optimization\": true,\n    \"goals\": {\n        \"goal_type\": \"vcr\",\n        \"goal_value\": 0.7,\n        \"max_bid\": 15.0\n    },\n    \"budget\": {\n        \"budget\": 2000\n    },\n    \"duration\": {\n        \"use_campaign_start\": true,\n        \"use_campaign_end\": true\n    },\n    \"pacing\": {\n        \"pacing_type\": \"even\",\n        \"pacing_amount\": 200,\n        \"pacing_interval\": \"day\",\n        \"impression_pacing_type\": \"even\",\n        \"impression_pacing_amount\": 10000,\n        \"impression_pacing_interval\": \"day\"\n    },\n    \"frequency\": {\n        \"frequency_type\": \"even\",\n        \"frequency_interval\": \"hour\",\n        \"frequency_amount\": 2\n    },\n    \"inventory\": {\n        \"supply_type\": \"RTB\",\n        \"run_on_all_pmp\": true,\n        \"run_on_all_exchanges\": true\n    },\n    \"targeting\": {\n        \"technology\": {\n            \"include\": [\n                {\n                    \"target_value_id\": {{videoPlacementTargetID}},\n                    \"code\": \"VPLC\"\n                },\n                {\n                    \"target_value_id\": {{videoPlayerSizeTargetID}},\n                    \"code\": \"VPSZ\"\n                },\n                {\n                    \"target_value_id\": {{videoLinearityTargetID}},\n                    \"code\": \"VLIN\"\n                },\n                {\n                    \"target_value_id\": {{videoSkippabilityTargetID}},\n                    \"code\": \"VSKP\"\n                }\n            ]\n        }\n    }\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{baseurl}}strategies",
							"host": [
								"{{baseurl}}strategies"
							]
						},
						"description": "Creates a video strategy (`media_type: \"VIDEO\"`) with a VCR goal. Includes video-specific targeting dimensions: audibility, context, linearity, placement, player size, skippability."
					},
					"response": []
				},
				{
					"name": "Create Strategy (Display - CPA with Day Parts)",
					"id": "e5c8d8c0-9cfe-4c31-86fb-f74f29a6df37",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"campaign_id\": {{campaignID}},\n    \"name\": \"Strategy Display CPA DayParts\",\n    \"status\": true,\n    \"media_type\": \"DISPLAY\",\n    \"type\": \"REM\",\n    \"use_optimization\": true,\n    \"goals\": {\n        \"goal_type\": \"cpa\",\n        \"goal_value\": 10.0,\n        \"max_bid\": 12.0\n    },\n    \"budget\": {\n        \"budget\": 1500\n    },\n    \"duration\": {\n        \"use_campaign_start\": true,\n        \"use_campaign_end\": true\n    },\n    \"pacing\": {\n        \"pacing_type\": \"even\",\n        \"pacing_amount\": 150,\n        \"pacing_interval\": \"day\"\n    },\n    \"frequency\": {\n        \"frequency_type\": \"no-limit\"\n    },\n    \"inventory\": {\n        \"supply_type\": \"RTB\",\n        \"run_on_all_pmp\": false,\n        \"run_on_all_exchanges\": true\n    },\n    \"targeting\": {\n        \"day_parts\": [\n            {\n                \"days\": [\n                    \"M\",\n                    \"T\",\n                    \"W\",\n                    \"R\",\n                    \"F\"\n                ],\n                \"start_hour\": 8,\n                \"end_hour\": 20,\n                \"user_time\": true\n            }\n        ],\n        \"fold_position\": [\n            \"ABOVE\",\n            \"BELOW\"\n        ]\n    }\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{baseurl}}strategies",
							"host": [
								"{{baseurl}}strategies"
							]
						},
						"description": "Creates a strategy with CPA goal and day-part scheduling. The `day_parts` array uses `days` (e.g., `[\"M\",\"T\",\"W\"]`), `start_hour`, `end_hour`, and `user_time`."
					},
					"response": []
				},
				{
					"name": "Create Strategy (GBO with Pixel Targeting)",
					"id": "206a9bc5-a655-4181-abc9-12e2d8b908a2",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"campaign_id\": {{campaignID}},\n    \"name\": \"Strategy GBO with Pixel Targeting\",\n    \"status\": true,\n    \"media_type\": \"DISPLAY\",\n    \"type\": \"GBO\",\n    \"use_optimization\": true,\n    \"goals\": {\n        \"goal_type\": \"cpc\",\n        \"goal_value\": 3.0,\n        \"max_bid\": 10.0\n    },\n    \"budget\": {\n        \"budget\": 800\n    },\n    \"duration\": {\n        \"use_campaign_start\": true,\n        \"use_campaign_end\": true\n    },\n    \"pacing\": {\n        \"pacing_type\": \"even\",\n        \"pacing_amount\": 80,\n        \"pacing_interval\": \"day\"\n    },\n    \"frequency\": {\n        \"frequency_type\": \"even\",\n        \"frequency_interval\": \"day\",\n        \"frequency_amount\": 3\n    },\n    \"inventory\": {\n        \"supply_type\": \"RTB\",\n        \"run_on_all_pmp\": false,\n        \"run_on_all_exchanges\": true\n    },\n    \"targeting\": {\n        \"my_data\": {\n            \"include\": {\n                \"operator\": \"OR\",\n                \"pixels\": [\n                    {\n                        \"pixel_id\": {{pixelBundleID}}\n                    }\n                ]\n            }\n        }\n    }\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{baseurl}}strategies",
							"host": [
								"{{baseurl}}strategies"
							]
						},
						"description": "Creates a strategy using GBO (Goal-Based Optimization) with pixel-based audience targeting."
					},
					"response": []
				},
				{
					"name": "Create Strategy (CPC with Site Lists & Concepts)",
					"id": "a723c4e8-0f4f-48d8-b090-334270993e61",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"campaign_id\": {{campaignID}},\n    \"name\": \"Strategy with Site Lists\",\n    \"status\": true,\n    \"media_type\": \"DISPLAY\",\n    \"type\": \"REM\",\n    \"use_optimization\": true,\n    \"goals\": {\n        \"goal_type\": \"cpc\",\n        \"goal_value\": 2.0,\n        \"max_bid\": 6.0\n    },\n    \"budget\": {\n        \"budget\": 600\n    },\n    \"duration\": {\n        \"use_campaign_start\": true,\n        \"use_campaign_end\": true\n    },\n    \"pacing\": {\n        \"pacing_type\": \"even\",\n        \"pacing_amount\": 60,\n        \"pacing_interval\": \"day\"\n    },\n    \"frequency\": {\n        \"frequency_type\": \"no-limit\"\n    },\n    \"inventory\": {\n        \"supply_type\": \"RTB\",\n        \"run_on_all_pmp\": false,\n        \"run_on_all_exchanges\": true,\n        \"site_lists\": [\n            {\n                \"site_list_id\": {{siteListID}},\n                \"assigned\": true\n            }\n        ]\n    },\n    \"concepts\": {\n        \"weighting\": \"NONE\",\n        \"creative_groups\": [\n            {\n                \"concept_id\": {{conceptID}},\n                \"percent\": 0\n            }\n        ]\n    }\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{baseurl}}strategies",
							"host": [
								"{{baseurl}}strategies"
							]
						},
						"description": "Creates a strategy with site list inventory restrictions and creative concept assignments. Site lists use `site_list_id` and concepts use `weighting` and `percent` for rotation."
					},
					"response": []
				},
				{
					"name": "Create Strategy (CPC with Technology Targeting)",
					"id": "d4561577-e635-4597-899a-e255258893b5",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"campaign_id\": {{campaignID}},\n    \"name\": \"Strategy Technology Targeting\",\n    \"status\": true,\n    \"media_type\": \"DISPLAY\",\n    \"type\": \"REM\",\n    \"use_optimization\": true,\n    \"goals\": {\n        \"goal_type\": \"cpc\",\n        \"goal_value\": 2.5,\n        \"max_bid\": 8.0\n    },\n    \"budget\": {\n        \"budget\": 1200\n    },\n    \"duration\": {\n        \"use_campaign_start\": true,\n        \"use_campaign_end\": true\n    },\n    \"pacing\": {\n        \"pacing_type\": \"even\",\n        \"pacing_amount\": 120,\n        \"pacing_interval\": \"day\"\n    },\n    \"frequency\": {\n        \"frequency_type\": \"even\",\n        \"frequency_interval\": \"day\",\n        \"frequency_amount\": 5\n    },\n    \"inventory\": {\n        \"supply_type\": \"RTB\",\n        \"run_on_all_pmp\": false,\n        \"run_on_all_exchanges\": true\n    },\n    \"targeting\": {\n        \"technology\": {\n            \"include\": [\n                {\n                    \"target_value_id\": {{browserTargetID}},\n                    \"code\": \"BSER\"\n                },\n                {\n                    \"target_value_id\": {{osTargetID}},\n                    \"code\": \"OSXX\"\n                },\n                {\n                    \"target_value_id\": {{deviceTargetID}},\n                    \"code\": \"DVCE\"\n                },\n                {\n                    \"target_value_id\": {{connectionSpeedTargetID}},\n                    \"code\": \"CSPD\"\n                }\n            ]\n        },\n        \"location\": {\n            \"include\": [\n                {\n                    \"target_value_id\": {{countryTargetID}},\n                    \"code\": \"COUNTRY\"\n                },\n                {\n                    \"target_value_id\": {{regionTargetID}},\n                    \"code\": \"REGN\"\n                }\n            ]\n        },\n        \"fold_position\": [\n            \"ABOVE\",\n            \"BELOW\"\n        ]\n    }\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{baseurl}}strategies",
							"host": [
								"{{baseurl}}strategies"
							]
						},
						"description": "Creates a strategy with technology targeting: browsers, OS, devices, and connection speeds. Each dimension uses include/exclude arrays of `target_value_id` entries."
					},
					"response": []
				},
				{
					"name": "Create Strategy (CPC with IP Address Targeting)",
					"id": "ca151570-3679-4517-8f97-7ea685f125b6",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"campaign_id\": {{campaignID}},\n    \"name\": \"Strategy IP Address Targeting\",\n    \"status\": true,\n    \"media_type\": \"DISPLAY\",\n    \"type\": \"REM\",\n    \"use_optimization\": true,\n    \"goals\": {\n        \"goal_type\": \"cpc\",\n        \"goal_value\": 3.0,\n        \"max_bid\": 9.0\n    },\n    \"budget\": {\n        \"budget\": 800\n    },\n    \"duration\": {\n        \"use_campaign_start\": true,\n        \"use_campaign_end\": true\n    },\n    \"pacing\": {\n        \"pacing_type\": \"even\",\n        \"pacing_amount\": 80,\n        \"pacing_interval\": \"day\"\n    },\n    \"frequency\": {\n        \"frequency_type\": \"no-limit\"\n    },\n    \"inventory\": {\n        \"supply_type\": \"RTB\",\n        \"run_on_all_pmp\": false,\n        \"run_on_all_exchanges\": true\n    },\n    \"targeting\": {\n        \"ip_addresses\": {\n            \"restriction\": \"INCLUDE\",\n            \"codes\": [\n                \"1.244.101.68\",\n                \"2.192.56.90\",\n                \"3.80.161.109\",\n                \"8.5.253.85\",\n                \"12.2.255.198\",\n                \"23.16.168.151\",\n                \"24.1.24.185\",\n                \"38.13.38.78\",\n                \"45.19.29.99\",\n                \"50.0.46.193\",\n                \"63.4.27.59\",\n                \"64.10.38.207\",\n                \"65.16.28.173\",\n                \"66.0.214.29\",\n                \"67.20.133.197\"\n            ]\n        }\n    }\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{baseurl}}strategies",
							"host": [
								"{{baseurl}}strategies"
							]
						},
						"description": "Creates a strategy with IP address targeting. IPs use `restriction` (INCLUDE/EXCLUDE) and `codes` array."
					},
					"response": []
				},
				{
					"name": "Create Strategy (CPC with Postal Code Targeting)",
					"id": "75ef1ebe-a35b-4d8d-8922-3a318f721f10",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"campaign_id\": {{campaignID}},\n    \"name\": \"Strategy Postal Code Targeting\",\n    \"status\": true,\n    \"media_type\": \"DISPLAY\",\n    \"type\": \"REM\",\n    \"use_optimization\": true,\n    \"goals\": {\n        \"goal_type\": \"cpc\",\n        \"goal_value\": 2.0,\n        \"max_bid\": 6.0\n    },\n    \"budget\": {\n        \"budget\": 600\n    },\n    \"duration\": {\n        \"use_campaign_start\": true,\n        \"use_campaign_end\": true\n    },\n    \"pacing\": {\n        \"pacing_type\": \"even\",\n        \"pacing_amount\": 60,\n        \"pacing_interval\": \"day\"\n    },\n    \"frequency\": {\n        \"frequency_type\": \"no-limit\"\n    },\n    \"inventory\": {\n        \"supply_type\": \"RTB\",\n        \"run_on_all_pmp\": false,\n        \"run_on_all_exchanges\": true\n    },\n    \"targeting\": {\n        \"postal_codes\": {\n            \"restriction\": \"INCLUDE\",\n            \"codes\": [\n                \"us-10001\",\n                \"us-90210\",\n                \"us-60601\",\n                \"us-30301\",\n                \"us-98101\"\n            ]\n        }\n    }\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{baseurl}}strategies",
							"host": [
								"{{baseurl}}strategies"
							]
						},
						"description": "Creates a strategy with postal code targeting. Codes use `restriction` and `codes` array (e.g., `us-10001`)."
					},
					"response": []
				},
				{
					"name": "Create Strategy (CPC with Contextual Segment Group)",
					"id": "272518f5-6ae1-4864-a019-88509014a386",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"campaign_id\": {{campaignID}},\n    \"name\": \"Strategy Contextual Segment Group\",\n    \"status\": true,\n    \"media_type\": \"DISPLAY\",\n    \"type\": \"REM\",\n    \"use_optimization\": true,\n    \"goals\": {\n        \"goal_type\": \"cpc\",\n        \"goal_value\": 2.5,\n        \"max_bid\": 7.0\n    },\n    \"budget\": {\n        \"budget\": 900\n    },\n    \"duration\": {\n        \"use_campaign_start\": true,\n        \"use_campaign_end\": true\n    },\n    \"pacing\": {\n        \"pacing_type\": \"even\",\n        \"pacing_amount\": 90,\n        \"pacing_interval\": \"day\"\n    },\n    \"frequency\": {\n        \"frequency_type\": \"no-limit\"\n    },\n    \"inventory\": {\n        \"supply_type\": \"RTB\",\n        \"run_on_all_pmp\": false,\n        \"run_on_all_exchanges\": true\n    },\n    \"targeting\": {\n        \"contextual_groups\": {\n            \"include\": [\n                {\n                    \"operator\": \"AND\",\n                    \"segment_groups\": [\n                        {\n                            \"segment_group_id\": {{segmentGroupID}}\n                        }\n                    ]\n                }\n            ]\n        }\n    }\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{baseurl}}strategies",
							"host": [
								"{{baseurl}}strategies"
							]
						},
						"description": "Creates a strategy targeting a contextual segment group via the `contextual_groups` object."
					},
					"response": []
				},
				{
					"name": "Get Strategy",
					"id": "779a57f9-bd79-4d6e-9114-27d033e5c68a",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}strategies/{{strategyID}}",
							"host": [
								"{{baseurl}}strategies"
							],
							"path": [
								"{{strategyID}}"
							],
							"query": [
								{
									"key": "extended",
									"value": "true",
									"disabled": true
								}
							]
						},
						"description": "Retrieves a single strategy by ID. Supports `extended=true` for parent campaign data."
					},
					"response": []
				},
				{
					"name": "Update Strategy",
					"id": "007f4a55-7ff5-4a17-982c-cb33e7ae5a0d",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"name\": \"Strategy {{$randomCompanyName}}\",\n    \"description\": \"Updated strategy description\",\n    \"status\": true,\n    \"archived\": false,\n    \"duration\": {\n        \"use_campaign_start\": false,\n        \"use_campaign_end\": false,\n        \"start_date\": \"{{futureStartDate}}\",\n        \"end_date\": \"{{futureEndDate}}\"\n    },\n    \"budget\": {\n        \"budget\": 750\n    },\n    \"goals\": {\n        \"goal_value\": 150,\n        \"max_bid\": 7.5,\n        \"max_bid_wm\": null,\n        \"roi_target\": null,\n        \"bid_min_devices\": null,\n        \"flat_rate_cpm\": null\n    }\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{baseurl}}strategies/{{strategyID}}",
							"host": [
								"{{baseurl}}strategies"
							],
							"path": [
								"{{strategyID}}"
							]
						},
						"description": "Updates basic strategy properties including name, status, goals, and budget."
					},
					"response": []
				},
				{
					"name": "Update Strategy (Targeting & Concepts)",
					"id": "efee5d8c-4752-4107-9c97-b386f2669955",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"name\": \"Strategy Targeted {{$randomCompanyName}}\",\n    \"status\": true,\n    \"goals\": {\n        \"goal_type\": \"cpc\",\n        \"goal_value\": 4.0,\n        \"max_bid\": 10.0,\n        \"bid_aggressiveness\": 70\n    },\n    \"pacing\": {\n        \"pacing_type\": \"even\",\n        \"pacing_amount\": 100,\n        \"pacing_interval\": \"day\",\n        \"impression_pacing_type\": \"even\",\n        \"impression_pacing_amount\": 5000,\n        \"impression_pacing_interval\": \"day\"\n    },\n    \"frequency\": {\n        \"frequency_type\": \"even\",\n        \"frequency_interval\": \"day\",\n        \"frequency_amount\": 4\n    },\n    \"targeting\": {\n        \"fold_position\": [\n            \"ABOVE\"\n        ],\n        \"location\": {\n            \"include\": [\n                {\n                    \"target_value_id\": {{countryTargetID}},\n                    \"code\": \"COUNTRY\"\n                }\n            ]\n        },\n        \"technology\": {\n            \"include\": [\n                {\n                    \"target_value_id\": {{deviceTargetID}},\n                    \"code\": \"DVCE\"\n                },\n                {\n                    \"target_value_id\": {{connectionSpeedTargetID}},\n                    \"code\": \"CSPD\"\n                }\n            ]\n        },\n        \"day_parts\": [\n            {\n                \"days\": [\n                    \"M\",\n                    \"T\",\n                    \"W\",\n                    \"R\",\n                    \"F\"\n                ],\n                \"start_hour\": 9,\n                \"end_hour\": 17,\n                \"user_time\": true\n            }\n        ],\n        \"ip_addresses\": {\n            \"restriction\": \"INCLUDE\",\n            \"codes\": [\n                \"47.6.241.112\",\n                \"50.30.5.234\",\n                \"52.12.87.5\",\n                \"54.86.168.240\",\n                \"63.65.85.1\",\n                \"64.49.73.102\",\n                \"65.49.130.60\",\n                \"66.9.84.46\",\n                \"67.52.70.18\",\n                \"68.0.0.112\"\n            ]\n        },\n        \"postal_codes\": {\n            \"restriction\": \"INCLUDE\",\n            \"codes\": [\n                \"us-20001\",\n                \"us-20002\",\n                \"us-20003\"\n            ]\n        },\n        \"contextual\": {\n            \"include\": [\n                {\n                    \"operator\": \"OR\",\n                    \"segments\": [\n                        {\n                            \"targeting_segment_id\": {{contextualSegmentID1}}\n                        }\n                    ]\n                }\n            ]\n        }\n    },\n    \"concepts\": {\n        \"weighting\": \"BUDGET\",\n        \"creative_groups\": [\n            {\n                \"concept_id\": {{conceptID}},\n                \"percent\": 100\n            }\n        ]\n    }\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{baseurl}}strategies/{{strategyID}}",
							"host": [
								"{{baseurl}}strategies"
							],
							"path": [
								"{{strategyID}}"
							]
						},
						"description": "Updates a strategy's targeting configuration and concept assignments in a single request."
					},
					"response": []
				},
				{
					"name": "Update Strategy (Segment Group)",
					"id": "7b4776e2-ed81-43cc-9cce-020d348d9e2c",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"name\": \"Strategy With Segment Group {{$randomCompanyName}}\",\n    \"status\": true,\n    \"targeting\": {\n        \"contextual_groups\": {\n            \"exclude\": {\n                \"segment_groups\": [\n                    {\n                        \"segment_group_id\": {{segmentGroupID}}\n                    }\n                ]\n            }\n        }\n    }\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{baseurl}}strategies/{{strategyID}}",
							"host": [
								"{{baseurl}}strategies"
							],
							"path": [
								"{{strategyID}}"
							]
						},
						"description": "Updates a strategy's contextual segment group assignment."
					},
					"response": []
				},
				{
					"name": "Copy Strategy (All Targeting)",
					"id": "6fe7d04c-1cfb-4e0f-8f11-60f1ec929746",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"name\": \"Copied Strategy All Targeting\",\n    \"status\": true,\n    \"duration\": {\n        \"copy_use_campaign_start\": true,\n        \"copy_use_campaign_end\": true,\n        \"start_date\": \"{{futureStartDate}}\",\n        \"end_date\": \"{{futureEndDate}}\"\n    },\n    \"targeting\": {\n        \"copy_location\": true,\n        \"copy_technology\": true,\n        \"copy_day_parts\": true,\n        \"copy_postal_codes\": true,\n        \"copy_ip_addresses\": true,\n        \"copy_contextual\": true,\n        \"copy_fold_position\": true,\n        \"copy_geofence\": true,\n        \"copy_audience\": true,\n        \"copy_my_data\": true,\n        \"copy_audio_video\": false\n    },\n    \"inventory\": {\n        \"copy_supply\": true,\n        \"copy_site_lists\": true,\n        \"copy_supply_controls\": true\n    },\n    \"concepts\": {\n        \"copy_creative_groups\": true\n    }\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{baseurl}}strategies/{{strategyID}}/copy",
							"host": [
								"{{baseurl}}strategies/{{strategyID}}/copy"
							]
						},
						"description": "Copies a strategy with all targeting flags. Returns **200** (not 201). Flags: `copy_targeting`, `copy_concepts`, `copy_deals`, `copy_site_lists`, `copy_day_parts`, `copy_postal_codes`."
					},
					"response": []
				},
				{
					"name": "Get Original Strategy (for copy comparison)",
					"id": "d013b783-596e-4f3a-ad8f-6d79cff9de89",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}strategies/{{strategyID}}",
							"host": [
								"{{baseurl}}strategies"
							],
							"path": [
								"{{strategyID}}"
							],
							"query": [
								{
									"key": "full",
									"value": "*"
								}
							]
						},
						"description": "Fetches the original strategy with `full=*` for comparison with the copy."
					},
					"response": []
				},
				{
					"name": "Get Copied Strategy (compare with original)",
					"id": "51ca049e-9560-407e-8252-38af9ae8b81f",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}strategies/{{copiedStrategyID}}",
							"host": [
								"{{baseurl}}strategies"
							],
							"path": [
								"{{copiedStrategyID}}"
							],
							"query": [
								{
									"key": "full",
									"value": "*"
								}
							]
						},
						"description": "Fetches the copied strategy with `full=*` to verify the copy preserved targeting."
					},
					"response": []
				},
				{
					"name": "Copy Strategy (Minimal)",
					"id": "d7c9f017-1780-4c1f-9754-579cdcd63a30",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"name\": \"Copied Strategy Minimal\",\n    \"status\": false,\n    \"duration\": {\n        \"copy_use_campaign_start\": true,\n        \"copy_use_campaign_end\": true\n    }\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{baseurl}}strategies/{{strategyID}}/copy",
							"host": [
								"{{baseurl}}strategies/{{strategyID}}/copy"
							]
						},
						"description": "Copies a strategy with no targeting flags \u2014 creates a bare copy."
					},
					"response": []
				},
				{
					"name": "List Strategies",
					"id": "f77d01df-689f-4985-98ec-dd9867f1cd7d",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}strategies?full=*&sort_by=-id&page_limit=100&page_offset=0",
							"host": [
								"{{baseurl}}strategies"
							],
							"query": [
								{
									"key": "full",
									"value": "*"
								},
								{
									"key": "sort_by",
									"value": "-id"
								},
								{
									"key": "page_limit",
									"value": "100"
								},
								{
									"key": "page_offset",
									"value": "0"
								},
								{
									"key": "q",
									"value": "campaign_id=={{campaignID}}",
									"disabled": true
								},
								{
									"key": "with",
									"value": "technology,location,day_parts,site_lists,concepts,deals,supply",
									"disabled": true
								},
								{
									"key": "extended",
									"value": "true",
									"disabled": true
								},
								{
									"key": "live_only",
									"value": "true",
									"disabled": true
								}
							]
						},
						"description": "Lists strategies. Supports `q` filtering by `campaign_id`."
					},
					"response": []
				},
				{
					"name": "Get Strategy History",
					"id": "4cce0a19-fc94-4653-ae18-d499df4da8d4",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}strategies/{{strategyID}}/history",
							"host": [
								"{{baseurl}}strategies"
							],
							"path": [
								"{{strategyID}}",
								"history"
							]
						},
						"description": "Returns the audit log for a strategy."
					},
					"response": []
				},
				{
					"name": "List Strategy Friendly Names",
					"id": "a1fe458c-e496-40c7-b400-e73e5a494084",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}strategies/{{strategyID}}/friendly_names",
							"host": [
								"{{baseurl}}strategies/{{strategyID}}"
							],
							"path": [
								"friendly_names"
							]
						},
						"description": "Returns human-readable names for a strategy's targeting values (e.g., `Chrome` instead of a numeric ID)."
					},
					"response": []
				},
				{
					"name": "Get Strategy Targeting Expression",
					"id": "712601d2-06c2-4a9d-a38c-beaf5d4f4ffe",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}strategies/{{strategyID}}/targeting_expression",
							"host": [
								"{{baseurl}}strategies/{{strategyID}}"
							],
							"path": [
								"targeting_expression"
							]
						},
						"description": "Returns the compiled targeting expression for a strategy as a structured boolean expression."
					},
					"response": []
				}
			],
			"id": "62137615-bc0d-41fd-9986-768d98d8101f"
		},
		{
			"name": "Strategy IP Addresses",
			"description": "List and download IP address targeting applied to strategies.",
			"item": [
				{
					"name": "List Strategy IP Addresses",
					"id": "8820b289-407a-4d4b-8c53-6831b4abbc84",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}strategy_ip_addresses?full=*&q=strategy_id=={{ipStrategyID}}&page_limit=100&page_offset=0&sort_by=-id",
							"host": [
								"{{baseurl}}strategy_ip_addresses"
							],
							"query": [
								{
									"key": "full",
									"value": "*"
								},
								{
									"key": "q",
									"value": "strategy_id=={{ipStrategyID}}"
								},
								{
									"key": "page_limit",
									"value": "100"
								},
								{
									"key": "page_offset",
									"value": "0"
								},
								{
									"key": "sort_by",
									"value": "-id"
								}
							]
						},
						"description": "Lists IP address targets for a strategy. Requires `q=strategy_id==X` filter."
					},
					"response": []
				},
				{
					"name": "Download Strategy IP Addresses CSV",
					"id": "dff78d01-e554-4cae-bc20-22031574f775",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}strategy_ip_addresses/{{ipStrategyID}}/download.csv",
							"host": [
								"{{baseurl}}strategy_ip_addresses/{{ipStrategyID}}"
							],
							"path": [
								"download.csv"
							]
						},
						"description": "Downloads IP address targeting for a strategy as a CSV file."
					},
					"response": []
				}
			],
			"id": "6ec695d6-b258-4198-a46a-3f3107959457"
		},
		{
			"name": "Strategy Postal Codes",
			"description": "List postal code targeting for a strategy or download it as CSV.",
			"item": [
				{
					"name": "List Strategy Postal Codes",
					"id": "28f2467a-24e1-45d1-9c57-bb3d57a492b6",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}strategy_postal_codes?full=*&sort_by=-id&page_limit=100&page_offset=0&q=strategy_id=={{postalCodeStrategyID}}",
							"host": [
								"{{baseurl}}strategy_postal_codes"
							],
							"query": [
								{
									"key": "full",
									"value": "*"
								},
								{
									"key": "sort_by",
									"value": "-id"
								},
								{
									"key": "page_limit",
									"value": "100"
								},
								{
									"key": "page_offset",
									"value": "0"
								},
								{
									"key": "q",
									"value": "strategy_id=={{postalCodeStrategyID}}"
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Download Strategy Postal Codes CSV",
					"id": "5a7c1a12-37d2-4774-a7fc-81601ffdb39f",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}strategy_postal_codes/{{postalCodeStrategyID}}/download.csv",
							"host": [
								"{{baseurl}}strategy_postal_codes/{{postalCodeStrategyID}}"
							],
							"path": [
								"download.csv"
							]
						},
						"description": "Downloads postal code targeting for a strategy as a CSV file."
					},
					"response": []
				}
			],
			"id": "7f59fcb7-5e92-4cef-87af-3078d904dbd2"
		},
		{
			"name": "Strategy Concepts",
			"description": "Lists concept-to-strategy assignments with creative group weighting details.",
			"item": [
				{
					"name": "List Strategy Concepts",
					"id": "0b4423e2-da88-4d7f-9ad2-733b795f3c4b",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}strategy_concepts?full=*&sort_by=-id&page_limit=100&page_offset=0&q=strategy_id=={{strategyID}}",
							"host": [
								"{{baseurl}}strategy_concepts"
							],
							"query": [
								{
									"key": "full",
									"value": "*"
								},
								{
									"key": "sort_by",
									"value": "-id"
								},
								{
									"key": "page_limit",
									"value": "100"
								},
								{
									"key": "page_offset",
									"value": "0"
								},
								{
									"key": "q",
									"value": "strategy_id=={{strategyID}}"
								},
								{
									"key": "extended",
									"value": "true",
									"disabled": true
								}
							]
						},
						"description": "Lists concept-to-strategy assignments with creative weighting. Requires `q=strategy_id==X` filter."
					},
					"response": []
				}
			],
			"id": "2ab45880-da82-412c-a725-5fd9643a940f"
		},
		{
			"name": "Strategy Day Parts",
			"description": "Lists day part targeting schedules assigned to strategies.",
			"item": [
				{
					"name": "List Strategy Day Parts",
					"id": "337f562a-786f-48ce-827e-a3898a6a1153",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}strategy_day_parts?full=*&sort_by=-id&page_limit=100&page_offset=0&q=strategy_id=={{strategyID}}",
							"host": [
								"{{baseurl}}strategy_day_parts"
							],
							"query": [
								{
									"key": "full",
									"value": "*"
								},
								{
									"key": "sort_by",
									"value": "-id"
								},
								{
									"key": "page_limit",
									"value": "100"
								},
								{
									"key": "page_offset",
									"value": "0"
								},
								{
									"key": "q",
									"value": "strategy_id=={{strategyID}}"
								}
							]
						},
						"description": "Lists day-part scheduling rules for a strategy. Requires `q=strategy_id==X` filter."
					},
					"response": []
				}
			],
			"id": "e8b5098a-8761-42e2-bd76-692f60b4d2d0"
		},
		{
			"name": "Strategy Deals",
			"description": "Lists deal-to-strategy assignments for PMP deal targeting.",
			"item": [
				{
					"name": "List Strategy Deals",
					"id": "83e55362-7afe-4fa9-9afe-9907a76725e2",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}strategy_deals?full=*&sort_by=-id&page_limit=100&page_offset=0&q=strategy_id=={{strategyID}}",
							"host": [
								"{{baseurl}}strategy_deals"
							],
							"query": [
								{
									"key": "full",
									"value": "*"
								},
								{
									"key": "sort_by",
									"value": "-id"
								},
								{
									"key": "page_limit",
									"value": "100"
								},
								{
									"key": "page_offset",
									"value": "0"
								},
								{
									"key": "q",
									"value": "strategy_id=={{strategyID}}"
								}
							]
						}
					},
					"response": []
				}
			],
			"id": "b35835c0-b67a-484b-877a-8a7eebd34ea6"
		},
		{
			"name": "Strategy Groups",
			"description": "Lists strategy groups for a campaign.",
			"item": [
				{
					"name": "List Strategy Groups",
					"id": "367b1772-4c52-4992-b925-7ce88bf29d95",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}strategy_groups?full=*&sort_by=-id&page_limit=100&page_offset=0&q=campaign_id=={{campaignID}}",
							"host": [
								"{{baseurl}}strategy_groups"
							],
							"query": [
								{
									"key": "full",
									"value": "*"
								},
								{
									"key": "sort_by",
									"value": "-id"
								},
								{
									"key": "page_limit",
									"value": "100"
								},
								{
									"key": "page_offset",
									"value": "0"
								},
								{
									"key": "q",
									"value": "campaign_id=={{campaignID}}"
								}
							]
						}
					},
					"response": []
				}
			],
			"id": "01d780a6-bd62-4397-a005-85978768b257"
		},
		{
			"name": "Strategy Target Values",
			"description": "Lists target values assigned to strategies.",
			"item": [
				{
					"name": "List Strategy Target Values",
					"id": "19e594dd-beac-4c61-9b28-9c13cef24f4c",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}strategy_target_values?full=*&sort_by=-id&page_limit=100&page_offset=0&q=strategy_id=={{strategyID}}",
							"host": [
								"{{baseurl}}strategy_target_values"
							],
							"query": [
								{
									"key": "full",
									"value": "*"
								},
								{
									"key": "sort_by",
									"value": "-id"
								},
								{
									"key": "page_limit",
									"value": "100"
								},
								{
									"key": "page_offset",
									"value": "0"
								},
								{
									"key": "q",
									"value": "strategy_id=={{strategyID}}"
								},
								{
									"key": "with",
									"value": "strategy_target,target_value",
									"disabled": true
								}
							]
						}
					},
					"response": []
				}
			],
			"id": "6d1b4274-6bdb-47fd-8479-b567358f860f"
		},
		{
			"name": "Atomic Creatives",
			"description": "CRUD for atomic creatives (3PAS and MMAS), creative draft preview, file uploads (PNG and HTML5 ZIP), healthcheck, and audit history.",
			"item": [
				{
					"name": "Create 3PAS Atomic Creative",
					"id": "e00474d9-72b0-4f4f-bdd0-012631ec55c5",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"advertiser_id\": {{advertiserID}},\n    \"concept_id\": {{conceptID}},\n    \"name\": \"New Atomic Creative\",\n    \"status\": true,\n    \"archived\": false,\n    \"width\": 300,\n    \"height\": 250,\n    \"file_type\": \"jpg\",\n    \"ad_format\": \"DISPLAY\",\n    \"ad_server_type\": \"TERMINALONE\",\n    \"click_through_url\": \"https://example.com\",\n    \"media_type\": \"display\",\n    \"tag_type\": \"NOSCRIPT\",\n    \"tag\": \"<img src='https://example.com/pixel.gif' />\",\n    \"is_multi_creative\": false,\n    \"has_sound\": false,\n    \"rich_media\": false,\n    \"rich_media_provider\": \"\",\n    \"built\": false,\n    \"external_identifier\": \"\",\n    \"expand\": \"\",\n    \"expansion_trigger\": \"AUTOMATIC\",\n    \"expansion_direction\": \"NONRESTRICTED\",\n    \"tpas_ad_tag\": \"\",\n    \"is_mraid\": false,\n    \"is_https\": true,\n    \"t1as\": false,\n    \"start_date\": \"{{futureStartDate}}\",\n    \"end_date\": \"{{futureEndDate}}\",\n    \"vast_version\": null,\n    \"is_audio\": false,\n    \"vendor_ids\": []\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{baseurl}}atomic_creatives",
							"host": [
								"{{baseurl}}atomic_creatives"
							]
						},
						"description": "Creates a 3PAS (third-party ad serving) atomic creative with tag-based ad content. Required: `advertiser_id`, `concept_id`, `name`, `width`, `height`, `file_type`, `ad_format`, `media_type`, `tag`."
					},
					"response": []
				},
				{
					"name": "Creative MMAS Display Draft (Preview)",
					"id": "65477354-a489-4ca1-a23b-98fe7fcfacaf",
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [],
						"body": {
							"mode": "formdata",
							"formdata": [
								{
									"key": "filename",
									"type": "file",
									"src": "creatives/example-creative-300x250.png"
								},
								{
									"key": "metadata",
									"value": "{\"advertiser_id\": {{advertiserID}}, \"is_https\": true, \"submissions\": [{\"name\": \"example-creative-300x250.png\", \"creative_name\": \"Draft Creative 300x250\", \"click_through_url\": \"https://example.com\", \"landing_page\": \"https://example.com\", \"concept_id\": {{conceptID}}}]}",
									"type": "text"
								}
							]
						},
						"url": {
							"raw": "{{baseurl}}creative_draft",
							"host": [
								"{{baseurl}}creative_draft"
							]
						},
						"description": "Preview and validate MMAS display creative assets before committing to upload. Uses the same multipart/form-data format as creative_upload but posts to creative_draft."
					},
					"response": []
				},
				{
					"name": "Create MMAS Display Creative - PNG",
					"id": "f5ea49f5-7007-429a-944e-7f558472c029",
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [],
						"body": {
							"mode": "formdata",
							"formdata": [
								{
									"key": "filename",
									"type": "file",
									"src": "creatives/example-creative-300x250.png"
								},
								{
									"key": "metadata",
									"value": "{\"advertiser_id\": {{advertiserID}}, \"is_https\": true, \"submissions\": [{\"name\": \"example-creative-300x250.png\", \"creative_name\": \"PNG Creative 300x250\", \"click_through_url\": \"https://example.com/blog/the-hidden-costs-of-opacity-how-fragmentation-bleeds-media-budgets\", \"landing_page\": \"https://example.com\", \"concept_id\": {{conceptID}}}]}",
									"type": "text"
								}
							]
						},
						"url": {
							"raw": "{{baseurl}}creative_upload",
							"host": [
								"{{baseurl}}creative_upload"
							]
						},
						"description": "Uploads a PNG image as an MMAS display creative via multipart/form-data. The `metadata` field is a JSON string with `advertiser_id` and `submissions` array (each with `name`, `click_through_url`, `concept_id`). Returns 201."
					},
					"response": []
				},
				{
					"name": "Creative MMAS Display Creative - HTML5",
					"id": "872ff668-adcf-4fff-8c35-df1955851b26",
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [],
						"body": {
							"mode": "formdata",
							"formdata": [
								{
									"key": "filename",
									"type": "file",
									"src": "creatives/Example Corp HTML5 - 300x250.zip"
								},
								{
									"key": "metadata",
									"value": "{\"advertiser_id\": {{advertiserID}}, \"is_https\": true, \"submissions\": [{\"name\": \"Example Corp - 300x250.zip\", \"creative_name\": \"HTML5 Creative 300x250\", \"click_through_url\": \"https://example.com/blog/the-hidden-costs-of-opacity-how-fragmentation-bleeds-media-budgets\", \"landing_page\": \"https://example.com\", \"concept_id\": {{conceptID}}, \"backup\": \"Example Corp - 300x250.png\"}]}",
									"type": "text"
								}
							]
						},
						"url": {
							"raw": "{{baseurl}}creative_upload",
							"host": [
								"{{baseurl}}creative_upload"
							]
						},
						"description": "Uploads an HTML5 ZIP as an MMAS display creative via multipart/form-data. The submission `name` must match the inner ZIP filename, not the outer archive name."
					},
					"response": []
				},
				{
					"name": "Get Atomic Creative",
					"id": "fcb8c8f4-7ac1-4734-86d2-0e54cb13711f",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}atomic_creatives/{{atomicCreativeID}}",
							"host": [
								"{{baseurl}}atomic_creatives"
							],
							"path": [
								"{{atomicCreativeID}}"
							],
							"query": [
								{
									"key": "with",
									"value": "creative_approval"
								}
							]
						},
						"description": "Retrieves a single atomic creative by ID."
					},
					"response": []
				},
				{
					"name": "Update Atomic Creative",
					"id": "ade8e3ee-2298-470a-bc95-51fff5e54be5",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"name\": \"Atomic Creative {{$randomCompanyName}}\",\n    \"status\": true,\n    \"archived\": false,\n    \"click_through_url\": \"https://example.com/updated\"\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{baseurl}}atomic_creatives/{{atomicCreativeID}}",
							"host": [
								"{{baseurl}}atomic_creatives"
							],
							"path": [
								"{{atomicCreativeID}}"
							]
						},
						"description": "Updates atomic creative properties such as `name`, `status`, and `click_url`."
					},
					"response": []
				},
				{
					"name": "List Atomic Creatives",
					"id": "89140c92-d61a-4d3d-9d46-dc5e862bec19",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}atomic_creatives?full=*&sort_by=-id&page_limit=100&page_offset=0&with=creative_approval",
							"host": [
								"{{baseurl}}atomic_creatives"
							],
							"query": [
								{
									"key": "full",
									"value": "*"
								},
								{
									"key": "sort_by",
									"value": "-id"
								},
								{
									"key": "page_limit",
									"value": "100"
								},
								{
									"key": "page_offset",
									"value": "0"
								},
								{
									"key": "q",
									"value": "advertiser_id=={{advertiserID}}",
									"disabled": true
								},
								{
									"key": "with",
									"value": "creative_approval"
								}
							]
						},
						"description": "Lists atomic creatives. Supports `q` filtering by `advertiser_id`."
					},
					"response": []
				},
				{
					"name": "Get Atomic Creative Healthcheck",
					"id": "837d0b0e-344d-45e3-9a85-2d24bbb43d70",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}atomic_creatives/healthcheck?q=atomic_creative_id=={{atomicCreativeID}}",
							"host": [
								"{{baseurl}}atomic_creatives/healthcheck"
							],
							"query": [
								{
									"key": "q",
									"value": "atomic_creative_id=={{atomicCreativeID}}"
								}
							]
						},
						"description": "Checks creative approval status across ad exchanges (AppNexus, AdX, Microsoft, etc.). Requires `q=atomic_creative_id==X` filter."
					},
					"response": []
				},
				{
					"name": "Get Atomic Creative History",
					"id": "28ed15da-34b7-4249-a376-3d4a3e1193db",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}atomic_creatives/{{atomicCreativeID}}/history",
							"host": [
								"{{baseurl}}atomic_creatives"
							],
							"path": [
								"{{atomicCreativeID}}",
								"history"
							]
						},
						"description": "Returns the audit log for an atomic creative."
					},
					"response": []
				}
			],
			"id": "a25393ea-d119-479a-9fb5-f8fb472ce9a7"
		},
		{
			"name": "Marketplaces",
			"description": "Lists available marketplaces (supply exchanges) and their configuration.",
			"item": [
				{
					"name": "List Marketplaces",
					"id": "53adb9f4-ad63-470f-8c7c-d57eafdae4d1",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}marketplaces?full=*&sort_by=-id&page_limit=100&page_offset=0",
							"host": [
								"{{baseurl}}marketplaces"
							],
							"query": [
								{
									"key": "full",
									"value": "*"
								},
								{
									"key": "sort_by",
									"value": "-id"
								},
								{
									"key": "page_limit",
									"value": "100"
								},
								{
									"key": "page_offset",
									"value": "0"
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Get Marketplace",
					"id": "3a2eeee4-250d-44b1-85b9-8bc441fdec4e",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}marketplaces/{{marketplaceID}}",
							"host": [
								"{{baseurl}}marketplaces"
							],
							"path": [
								"{{marketplaceID}}"
							]
						}
					},
					"response": []
				}
			],
			"id": "33038453-6dde-4c52-b0b4-0358670517a7"
		},
		{
			"name": "Bulk Updates",
			"description": "Bulk create and update endpoints. All return 200 on success or 207 for partial success. Campaigns: update only. Strategies: update only. Budget flights: create, update, and delete (can be mixed in one request). Concepts: update only (only id + status accepted). Atomic creatives: create and update.",
			"item": [
				{
					"name": "Bulk Update Campaigns",
					"id": "75b27844-e6bd-4b80-9e9b-92564212eeb4",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"update\": [\n        {\n            \"id\": {{campaignID}},\n            \"status\": true,\n            \"name\": \"E2E Campaign - Bulk Updated\",\n            \"service_type\": \"SELF\",\n            \"archived\": false,\n            \"mfa_avoidance\": \"EXCLUDE_MFA\",\n            \"frequency\": {\n                \"frequency_type\": \"even\",\n                \"frequency_interval\": \"day\",\n                \"frequency_amount\": 3,\n                \"frequency_optimization\": true\n            },\n            \"pacing\": {\n                \"spend_cap_type\": \"even\",\n                \"spend_cap_amount\": 150,\n                \"spend_cap_automatic\": true,\n                \"impression_cap_type\": \"even\",\n                \"impression_cap_amount\": 25000,\n                \"impression_cap_automatic\": false,\n                \"brain_intraday_pacing\": true\n            },\n            \"site_lists\": [\n                {\n                    \"id\": {{siteListID}},\n                    \"assigned\": true\n                }\n            ]\n        }\n    ]\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{baseurl}}bulk_update/campaigns",
							"host": [
								"{{baseurl}}bulk_update/campaigns"
							]
						},
						"description": "Bulk update campaigns. Supports: `name`, `status`, `archived`, `service_type`, `frequency_type`, `io_name`, `ad_server`, `attribution`, `goals`, `budget`, `frequency`, `inventory`, `site_lists`, `duration`. Note: `notes` field may cause 207 partial success."
					},
					"response": []
				},
				{
					"name": "Bulk Update Strategies",
					"id": "eb5e9536-5ccf-4215-bff9-45756e6fc901",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"update\": [\n        {\n            \"id\": {{strategyID}},\n            \"status\": true,\n            \"name\": \"E2E Strategy - Bulk Updated\",\n            \"description\": \"Bulk updated via E2E regression test suite\",\n            \"archived\": false,\n            \"budget\": {\n                \"budget\": 750\n            },\n            \"goals\": {\n                \"goal_value\": 4.0,\n                \"max_bid\": 8.0,\n                \"bid_aggressiveness\": 70\n            },\n            \"pacing\": {\n                \"pacing_type\": \"even\",\n                \"pacing_amount\": 100,\n                \"pacing_interval\": \"day\"\n            },\n            \"frequency\": {\n                \"frequency_type\": \"even\",\n                \"frequency_interval\": \"day\",\n                \"frequency_amount\": 4\n            },\n            \"inventory\": {\n                \"supply_type\": \"RTB\",\n                \"run_on_all_pmp\": false,\n                \"run_on_all_exchanges\": true\n            },\n            \"concepts\": {\n                \"weighting\": \"BUDGET\",\n                \"creative_groups\": [\n                    {\n                        \"concept_id\": {{conceptID}},\n                        \"percent\": 100\n                    }\n                ]\n            }\n        }\n    ]\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{baseurl}}bulk_update/strategies",
							"host": [
								"{{baseurl}}bulk_update/strategies"
							]
						},
						"description": "Bulk update strategies. Supports: `name`, `status`, `archived`, `description`, `media_type`, `use_optimization`, `budget`, `frequency`, `pacing`, `goals`, `inventory`, `targeting`, `concepts`, `groups`."
					},
					"response": []
				},
				{
					"name": "Bulk Update Budget Flights",
					"id": "d015cec5-e113-411c-856d-69a54c71d5f8",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"budget_flights\": {\n        \"update\": [\n            {\n                \"id\": {{budgetFlightID}},\n                \"total_budget\": 5000,\n                \"total_impression_budget\": 500000\n            }\n        ]\n    }\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{baseurl}}bulk_update/budget_flights",
							"host": [
								"{{baseurl}}bulk_update/budget_flights"
							]
						},
						"description": "Bulk update budget flights. Supports: `total_budget`, `total_impression_budget`, `start_date`, `end_date`."
					},
					"response": []
				},
				{
					"name": "Bulk Create Budget Flight",
					"id": "0d0832e9-d06b-4237-8ce0-a9d1e1112042",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"budget_flights\": {\n        \"create\": [\n            {\n                \"campaign_id\": {{campaignID}},\n                \"start_date\": \"2027-05-02T00:00:00Z\",\n                \"end_date\": \"2027-06-01T23:59:59Z\",\n                \"total_budget\": 2000,\n                \"total_impression_budget\": 100000\n            }\n        ],\n        \"update\": [\n            {\n                \"id\": {{budgetFlightID}},\n                \"total_budget\": 5000\n            }\n        ]\n    }\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{baseurl}}bulk_update/budget_flights",
							"host": [
								"{{baseurl}}bulk_update/budget_flights"
							]
						},
						"description": "Bulk create a budget flight. Pre-request script computes non-overlapping dates. A single request can mix create, update, and delete operations."
					},
					"response": []
				},
				{
					"name": "Bulk Delete Budget Flight",
					"id": "51696e77-ee2d-43c0-9e48-73bc969d78d5",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"budget_flights\": {\n        \"delete\": [\n            {\n                \"id\": {{bulkCreatedFlightID}}\n            }\n        ]\n    }\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{baseurl}}bulk_update/budget_flights",
							"host": [
								"{{baseurl}}bulk_update/budget_flights"
							]
						},
						"description": "Bulk delete a budget flight (cleans up the flight created by the previous request)."
					},
					"response": []
				},
				{
					"name": "Bulk Update Concepts",
					"id": "d3b6c0d4-1899-41a2-9f11-e526931ceacb",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"concepts\": {\n        \"update\": [\n            {\n                \"id\": {{conceptID}},\n                \"status\": true\n            }\n        ]\n    }\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{baseurl}}bulk_update/concepts",
							"host": [
								"{{baseurl}}bulk_update/concepts"
							]
						},
						"description": "Bulk update concepts. Only `id` and `status` are accepted \u2014 `name` and `version` are rejected by the API."
					},
					"response": []
				},
				{
					"name": "Bulk Update Atomic Creatives",
					"id": "051b070d-ddac-4688-93f7-92362ad4c190",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"atomic_creatives\": {\n        \"update\": [\n            {\n                \"id\": {{atomicCreativeID}},\n                \"status\": true,\n                \"name\": \"E2E Atomic Creative - Bulk Updated\",\n                \"is_https\": true,\n                \"click_url\": \"https://example.com/bulk-updated\",\n                \"tag\": \"<img src='https://example.com/pixel.gif' />\",\n                \"tag_type\": \"NOSCRIPT\",\n                \"ad_format\": \"DISPLAY\",\n                \"media_type\": \"display\",\n                \"ad_server_type\": \"TERMINALONE\",\n                \"concept_id\": {{conceptID}}\n            }\n        ]\n    }\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{baseurl}}bulk_update/atomic_creatives",
							"host": [
								"{{baseurl}}bulk_update/atomic_creatives"
							]
						},
						"description": "Bulk update atomic creatives. Supports: `name`, `status`, `is_https`, `click_url`, `tag`, `tag_type`, `media_type`, `ad_format`, `ad_server_type`, `width`, `height`, `concept_id`, `vendor_ids[]`."
					},
					"response": []
				}
			],
			"id": "aaf8b009-e365-44cd-b77c-0ed2e5a58a19"
		},
		{
			"name": "Users",
			"description": "User management including list, single lookup, settings, permissions, and audit history.",
			"item": [
				{
					"name": "List Users",
					"id": "5b12a6d1-c9cc-4104-ad7f-a91ab903319b",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}users?full=*&sort_by=-id&page_limit=100&page_offset=0",
							"host": [
								"{{baseurl}}users"
							],
							"query": [
								{
									"key": "full",
									"value": "*"
								},
								{
									"key": "sort_by",
									"value": "-id"
								},
								{
									"key": "page_limit",
									"value": "100"
								},
								{
									"key": "page_offset",
									"value": "0"
								},
								{
									"key": "q",
									"value": "organization_id=={{organizationID}}",
									"disabled": true
								}
							]
						},
						"description": "Lists users. User entities use `first_name`/`last_name` (no `name` field) and `active` (not `status`)."
					},
					"response": []
				},
				{
					"name": "Get User",
					"id": "0e0a9a0f-a8ad-44e3-b757-e668c7324675",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}users/{{userID}}",
							"host": [
								"{{baseurl}}users"
							],
							"path": [
								"{{userID}}"
							]
						},
						"description": "Retrieves a single user by ID."
					},
					"response": []
				},
				{
					"name": "Get User Settings",
					"id": "666dc029-3b63-40a0-834c-492473f90a53",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}users/{{userID}}/settings",
							"host": [
								"{{baseurl}}users/{{userID}}"
							],
							"path": [
								"settings"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get User History",
					"id": "a8ebd0aa-2641-44d1-bb2d-cae3a2b36a66",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}users/{{userID}}/history",
							"host": [
								"{{baseurl}}users"
							],
							"path": [
								"{{userID}}",
								"history"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get User Permissions",
					"id": "e3408e8f-6c63-4cbe-973c-2c8d55840d63",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}permissions/{{userID}}",
							"host": [
								"{{baseurl}}permissions"
							],
							"path": [
								"{{userID}}"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get User Permissions (V2 Format)",
					"id": "76e0a949-edb0-49e9-b65f-c935fa6db9bc",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}permissions/{{userID}}/v2format",
							"host": [
								"{{baseurl}}permissions/{{userID}}"
							],
							"path": [
								"v2format"
							]
						}
					},
					"response": []
				}
			],
			"id": "d243c46c-b181-4585-b913-374cb64b37c4"
		},
		{
			"name": "Search",
			"description": "Cross-entity search across campaigns, strategies, advertisers, and other entity types.",
			"item": [
				{
					"name": "Search Entities",
					"id": "a5f6d9bc-c1f7-40b5-a450-36f86bb51994",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{bearerToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseurl}}search?name=test&limit=10",
							"host": [
								"{{baseurl}}search"
							],
							"query": [
								{
									"key": "name",
									"value": "test"
								},
								{
									"key": "limit",
									"value": "10"
								},
								{
									"key": "active_only",
									"value": "true",
									"disabled": true
								},
								{
									"key": "terminated",
									"value": "false",
									"disabled": true
								}
							]
						},
						"description": "Cross-entity search across campaigns, strategies, advertisers, and other entity types. Accepts `name` and `limit` parameters. Response groups results by entity type."
					},
					"response": []
				}
			],
			"id": "3b5acb1d-116c-496b-993d-5439d1898eca"
		}
	],
	"variable": [
		{
			"key": "bearerToken",
			"value": ""
		},
		{
			"key": "organizationID",
			"value": ""
		},
		{
			"key": "agencyID",
			"value": ""
		},
		{
			"key": "advertiserID",
			"value": ""
		},
		{
			"key": "campaignID",
			"value": ""
		},
		{
			"key": "pgCampaignID",
			"value": ""
		},
		{
			"key": "budgetFlightID",
			"value": ""
		},
		{
			"key": "strategyID",
			"value": ""
		},
		{
			"key": "ipStrategyID",
			"value": ""
		},
		{
			"key": "postalCodeStrategyID",
			"value": ""
		},
		{
			"key": "conceptID",
			"value": ""
		},
		{
			"key": "conceptVersion",
			"value": ""
		},
		{
			"key": "atomicCreativeID",
			"value": ""
		},
		{
			"key": "pixelBundleID",
			"value": ""
		},
		{
			"key": "dataPixelID",
			"value": ""
		},
		{
			"key": "siteListID",
			"value": ""
		},
		{
			"key": "contractID",
			"value": ""
		},
		{
			"key": "contractVersion",
			"value": ""
		},
		{
			"key": "verticalID",
			"value": ""
		},
		{
			"key": "supplySourceID",
			"value": ""
		},
		{
			"key": "vendorID",
			"value": ""
		},
		{
			"key": "marketplaceID",
			"value": ""
		},
		{
			"key": "userID",
			"value": ""
		},
		{
			"key": "audienceVendorID",
			"value": ""
		},
		{
			"key": "targetingSegmentObjectiveID",
			"value": ""
		},
		{
			"key": "futureStartDate",
			"value": ""
		},
		{
			"key": "futureEndDate",
			"value": ""
		},
		{
			"key": "currencyCode",
			"value": ""
		},
		{
			"key": "zoneName",
			"value": ""
		},
		{
			"key": "browserTargetID",
			"value": ""
		},
		{
			"key": "osTargetID",
			"value": ""
		},
		{
			"key": "deviceTargetID",
			"value": ""
		},
		{
			"key": "connectionSpeedTargetID",
			"value": ""
		},
		{
			"key": "countryTargetID",
			"value": ""
		},
		{
			"key": "regionTargetID",
			"value": ""
		},
		{
			"key": "videoAudibilityTargetID",
			"value": ""
		},
		{
			"key": "videoContextTargetID",
			"value": ""
		},
		{
			"key": "videoLinearityTargetID",
			"value": ""
		},
		{
			"key": "videoPlacementTargetID",
			"value": ""
		},
		{
			"key": "videoPlayerSizeTargetID",
			"value": ""
		},
		{
			"key": "videoSkippabilityTargetID",
			"value": ""
		},
		{
			"key": "contextualSegmentParentID",
			"value": ""
		},
		{
			"key": "contextualSegmentID1",
			"value": ""
		},
		{
			"key": "contextualSegmentID2",
			"value": ""
		},
		{
			"key": "segmentGroupID",
			"value": ""
		},
		{
			"key": "audienceSegmentParentID",
			"value": ""
		},
		{
			"key": "audienceSegmentID1",
			"value": ""
		},
		{
			"key": "copiedCampaignID",
			"value": ""
		},
		{
			"key": "copiedStrategyID",
			"value": ""
		},
		{
			"key": "originalCampaignData",
			"value": ""
		},
		{
			"key": "originalStrategyData",
			"value": ""
		},
		{
			"key": "multiFlightCampaignID",
			"value": ""
		},
		{
			"key": "flight1Start",
			"value": ""
		},
		{
			"key": "flight1End",
			"value": ""
		},
		{
			"key": "flight2Start",
			"value": ""
		},
		{
			"key": "flight2End",
			"value": ""
		},
		{
			"key": "flight3Start",
			"value": ""
		},
		{
			"key": "flight3End",
			"value": ""
		}
	]
}