Advertisement
Guest User

Untitled

a guest
Feb 10th, 2016
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.61 KB | None | 0 0
  1. var FiddlerProxy = require('mozu-node-sdk/plugins/fiddler-proxy');
  2. var apiContext = require('mozu-node-sdk/clients/platform/application')();
  3. apiContext.plugins = [FiddlerProxy];
  4. var locationResource = require('mozu-node-sdk/clients/commerce/admin/location')(apiContext);
  5.  
  6. var location =
  7. {
  8. "code": "retailops1",
  9. "locationTypes": [{ "code": "warehouse", "name": "Warehouse" }],
  10. "fulfillmentTypes": [{ "code": "DS", "name": "Direct Ship", "shippingRequired": true }],
  11. "shippingOriginContact":
  12. {
  13. "firstName": "",
  14. "middleNameOrInitial": "",
  15. "lastNameOrSurname": "",
  16. "companyOrOrganization": "My Company",
  17. "phoneNumber": "(555) 555-5555",
  18. "email": "fake@email.com"
  19. },
  20. "isDisabled": false,
  21. "name": "Retailops Default Location",
  22. "description": "",
  23. "address":
  24. {
  25. "address1": "123 Example Ave",
  26. "address2": "",
  27. "address3": "",
  28. "address4": "",
  29. "cityOrTown": "San Diego",
  30. "stateOrProvince": "CA",
  31. "countryCode": "US",
  32. "postalOrZipCode": "80301",
  33. "addressType": "Commercial",
  34. "addressIsValidated": false
  35. },
  36. "geo": { "lat": null, "lng": null },
  37. "phone": "",
  38. "fax": "",
  39. "note": "",
  40. "supportsInventory": false,
  41. "allowFulfillmentWithNoStock": false,
  42. "tags": [],
  43. "regularHours": { "sunday": { "label": "" }, "monday": { "label": "" }, "tuesday": { "label": "" }, "wednesday": { "label": "" }, "thursday": { "label": "" }, "friday": { "label": "" }, "saturday": { "label": "" } }
  44. }
  45.  
  46.  
  47. locationResource.addLocation(location)
  48. .then(log)
  49. .catch(reportError);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement