ImpSdk.addToMacysList

Developed by Meysam Ghaderyan

Adds one item to Macys default wishlist

var options = {
  upcNumber: 637348371631,
  quantity: 2
}
impSdk.addToMacysList(options, function(err, data) {
  if (err) {
    // do something with err
  } else {
    console.log(data);
  }
});

Here is an example of data in the callback:

{
  "list": {
    "listGuid": "9b49639d-e966-48a5-b295-f92fc931ea67",
    "name": "Guest List",
    "listType": "W",
    "defaultList": true,
    "onSaleNotify": false,
    "searchable": false,
    "numberOfItems": 2,
    "showPurchaseInfo": true,
    "createdDate": "2016-05-24 16:57:42.655722",
    "lastModified": "2016-05-24 16:57:42.655722",
    "user": {
      "id": 2159344479,
      "guid": "e9758377-3d48-43e7-9b19-48f7fd3d3ec7",
      "guestUser": false
    },
    ...
  }
}

Demo: