Hello! I am running into what looks like an error in the API. I am attempting to create a very basic email campaign advertisement newsletter that sends out one message of the autopopulated 10 newest listings. I am following the API directions here: https://developer.ebay.com/api-docs/sell/marketing/resources/email_campaign/methods/createEmailCampaign According to the documentation s cheduleDate does not need to be present in the payload. It states: The date and time that the email campaign newsletter will be sent, given in UTC format. Example: 2023-05-20T03:13:35Z
This field should be used if the seller wishes to send the email campaign on a future date. If no scheduleDate is set, the email campaign will send once it is created or updated.
Occurrence: Optional So from what I understand, this means that if I don't include this field into the payload, an email campaign should post as soon as able. This does not happen. Instead I'm returned the following error: {'errors': [{'errorId': 35215, 'domain': 'STORE_CRM', 'subdomain': 'Public API', 'category': 'REQUEST', 'message': 'SCHEDULE_DATE_IS_INVALID', 'longMessage': "'scheduleDate' is missing or invalid, please use a valid UTC format(yyyy-MM-ddThh:mm.ss.sssZ) string."}]} I thought that was strange but hey all I need to do is set a scheduled start date to a minute or so in the future and then it should accomplish the same goal. So I set up a line to the payload to add UTC time in the format eBay states, about 2 minutes into the future. And then it seems to launch successfully: So I am thinking the email should post as being sent a little while after the scheduled date, which in this case is a little bit after 20:45 UTC. However when I refresh the page it never sends. I tried waiting an hour before taking screenshots for this more recent example. Has anybody else successfully launched email campaigns like this via the REST api? I tried editing the campaign that was created to set a date to send it manually and it seemed to force a schedule date with no ability to choose the time to send it. I assume this one will just never send? I'll leave it overnight to see what happens. Any help would be appreciated