0

I have been trying to delete multiple campaigns from Eloqua at a time using Postman. But I am not able to do. I don't see reference in the tool as well http://docs.oracle.com/cloud/latest/marketingcs_gs/OMCAB/index.html#Developers/RESTAPI/REST-API.htm%3FTocPath%3D%2520Application%2520API%7C_____0.

Please let me know if deleting the multiple campaigns is possible.

vids
  • 47
  • 13

1 Answers1

1

It is not possible.

The link you provided mentions it's outdated, and a redirection link was available: http://docs.oracle.com/cloud/latest/marketingcs_gs/OMCAC/rest-endpoints.html

Have a look at all the DELETE methods over there, and you will see that there is no provision for sending more than one id at a time.

Edit: You say you are using Postman. It is possible to perform repetitive tasks (like deleting mulitple campaigns) with different parameters each time by using Collections.

Edit 2:

  • Create an environment,
  • Type your url with the id as a variable, e.g.: xyz.com/delete/{id}

  • And send all the id values as a JSON or CSV file. They have given a sample JSON, you would simply have to provide your ids inside an array, e.g.:

    [
    {"id":1},
    {"id":2},
    {"id":3}
    ]
    
Ray
  • 3,864
  • 7
  • 24
  • 36
  • Thanks for the answer. I have gone through Collections and dint understand how to delete multiple campaigns at a time. Do you have any example? – vids Oct 06 '17 at 11:48
  • This sounds like a possible solution. Will try. Thank you so much. – vids Oct 10 '17 at 11:45