removedInput schema / properties / reportTask
Removed value: -{
- "additionalProperties": false,
- "description": "Report task configuration",
- "properties": {
- "campaignIds": {
- "description": "Campaign IDs to include in report",
- "items": {
- "type": "string"
- },
- "type": "array"
- },
- "dateFrom": {
- "description": "Start date for report data (ISO 8601 format)",
- "type": "string"
- },
- "dateTo": {
- "description": "End date for report data (ISO 8601 format)",
- "type": "string"
- },
- "dimensions": {
- "description": "Report dimensions",
- "items": {
- "type": "string"
- },
- "type": "array"
- },
- "marketplaceId": {
- "description": "Marketplace ID",
- "enum": [
- "EBAY_AT",
- "EBAY_AU",
- "EBAY_BE",
- "EBAY_CA",
- "EBAY_CH",
- "EBAY_CN",
- "EBAY_CZ",
- "EBAY_DE",
- "EBAY_DK",
- "EBAY_ES",
- "EBAY_FI",
- "EBAY_FR",
- "EBAY_GB",
- "EBAY_GR",
- "EBAY_HK",
- "EBAY_HU",
- "EBAY_ID",
- "EBAY_IE",
- "EBAY_IL",
- "EBAY_IN",
- "EBAY_IT",
- "EBAY_JP",
- "EBAY_MY",
- "EBAY_NL",
- "EBAY_NO",
- "EBAY_NZ",
- "EBAY_PE",
- "EBAY_PH",
- "EBAY_PL",
- "EBAY_PR",
- "EBAY_PT",
- "EBAY_RU",
- "EBAY_SE",
- "EBAY_SG",
- "EBAY_TH",
- "EBAY_TW",
- "EBAY_US",
- "EBAY_VN",
- "EBAY_ZA",
- "EBAY_HALF_US",
- "EBAY_MOTORS_US"
- ],
- "type": "string"
- },
- "metrics": {
- "description": "Report metrics",
- "items": {
- "type": "string"
- },
- "type": "array"
- },
- "reportType": {
- "description": "Type of report to generate",
- "enum": [
- "CAMPAIGN_PERFORMANCE_REPORT",
- "LISTING_PERFORMANCE_REPORT",
- "KEYWORD_PERFORMANCE_REPORT",
- "ACCOUNT_PERFORMANCE_REPORT"
- ],
- "type": "string"
- }
- },
- "required": [
- "reportType",
- "dateFrom",
- "dateTo"
- ],
- "type": "object"
-}
addedInput schema / properties / request
Added value: +{
+ "additionalProperties": false,
+ "description": "Create report task request body",
+ "properties": {
+ "campaignIds": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "channels": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "dateFrom": {
+ "type": "string"
+ },
+ "dateTo": {
+ "type": "string"
+ },
+ "dimensions": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "dimensionKey": {
+ "type": "string"
+ },
+ "dimensionValues": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "fundingModels": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "inventoryReferences": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "inventoryReferenceId": {
+ "type": "string"
+ },
+ "inventoryReferenceType": {
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "listingIds": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "marketplaceId": {
+ "type": "string"
+ },
+ "metricKeys": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "reportFormat": {
+ "type": "string"
+ },
+ "reportType": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "dateFrom",
+ "dateTo",
+ "marketplaceId",
+ "reportType"
+ ],
+ "type": "object"
+}