Guest User

Untitled

a guest
Sep 24th, 2018
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.09 KB | None | 0 0
  1. http://magento-host/index.php/rest/V1/integration/customer/token?
  2. username=aditya.shah@test.com&password=test@123
  3.  
  4. http://magento-host/rest/V1/carts/mine
  5.  
  6. http://magento-host/index.php/rest/default/V1/carts/mine/items
  7.  
  8. {
  9. "cartItem": {
  10. "sku": "HKrh15hc", <product SKU>
  11. "qty": 5,
  12. "quote_id": "75", <Quote ID - Cart ID [see. step 2]>
  13. "product_option": {
  14. "extension_attributes": {
  15. "configurable_item_options": [
  16. {
  17. "option_id": "93",
  18. "option_value": 49
  19. },
  20. {
  21. "option_id": "141",
  22. "option_value": 168
  23. }
  24. ]
  25. }
  26. },
  27. "extension_attributes": {}
  28. }
  29. }
  30.  
  31. http://magento-host/index.php/rest/V1/carts/mine/shipping-information
  32.  
  33. {
  34. "addressInformation": {
  35. "shippingAddress": {
  36. "region": "MH",
  37. "region_id": 0,
  38. "country_id": "IN",
  39. "street": [
  40. "221,Baker-street (e)"
  41. ],
  42. "company": "Lumos",
  43. "telephone": "12345678",
  44. "postcode": "400001",
  45. "city": "Mumbai",
  46. "firstname": "Aditya",
  47. "lastname": "Shah",
  48. "email": "Aditya@Shah.com",
  49. "prefix": "address_",
  50. "region_code": "MH",
  51. "sameAsBilling": 1
  52. },
  53. "billingAddress": {
  54. "region": "MH",
  55. "region_id": 0,
  56. "country_id": "IN",
  57. "street": [
  58. "221,Baker-street (e)"
  59. ],
  60. "company": "Lumos",
  61. "telephone": "12345678",
  62. "postcode": "4000001",
  63. "city": "Mumbai",
  64. "firstname": "Aditya",
  65. "lastname": "Shah",
  66. "email": "Aditya@Shah.com",
  67. "prefix": "address_",
  68. "region_code": "MH"
  69. },
  70. "shipping_method_code": "flatrate",
  71. "shipping_carrier_code": "flatrate"
  72. }
  73. }
  74.  
  75. http://magento-host/index.php/rest/V1/carts/75/payment-methods
  76.  
  77. http://magento-host/index.php/rest/V1/carts/mine/order
  78.  
  79. {
  80. "paymentMethod": {
  81. "method": "checkmo"
  82. }
  83. }
Add Comment
Please, Sign In to add comment