removedInput schema / properties / emailCampaign
Removed value: -{
- "additionalProperties": false,
- "description": "Email campaign configuration",
- "properties": {
- "campaignName": {
- "description": "Email campaign name",
- "type": "string"
- },
- "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"
- },
- "subject": {
- "description": "Email subject line",
- "type": "string"
- }
- },
- "required": [
- "campaignName",
- "marketplaceId"
- ],
- "type": "object"
-}
addedInput schema / properties / request
Added value: +{
+ "additionalProperties": false,
+ "description": "Create email campaign request body",
+ "properties": {
+ "audiences": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "audienceType": {
+ "type": "string"
+ },
+ "code": {
+ "type": "string"
+ },
+ "name": {
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "emailCampaignType": {
+ "type": "string"
+ },
+ "itemIds": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "marketplaceId": {
+ "type": "string"
+ },
+ "scheduleDate": {
+ "type": "string"
+ },
+ "scheduleDateType": {
+ "type": "string"
+ },
+ "subject": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "emailCampaignType",
+ "marketplaceId"
+ ],
+ "type": "object"
+}