Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.75 KB | None | 0 0
  1. {
  2. "product": {
  3. "attribute_set_id": 4,
  4. "type_id": "simple",
  5. "sku": "B201-SKU",
  6. "name": "B201",
  7. "price": 25,
  8. "status": 1,
  9. "custom_attributes": {
  10. "description": "Heavy Duty Brake Cables",
  11. "meta_description": "Some describing text"
  12. }
  13. }
  14. }
  15.  
  16. $productData = [
  17. "attribute_set_id" => 4,
  18. "type_id": "simple",
  19. "sku": "B201-SKU",
  20. "name": "B201",
  21. "price": 25,
  22. "status": 1,
  23. "custom_attributes" => [
  24. ["attribute_code" => "description", "value" => "Heavy Duty Brake Cables"],
  25. ["attribute_code" => "meta_description", "value" => "Some describing text"],
  26. ["attribute_code" => "image", "value" => "/w/i/sample_1.jpg"],
  27. ["attribute_code" => "small_image", "value" => "/w/i/sample_2.jpg"],
  28. ["attribute_code" => "thumbnail", "value" => "/w/i/sample_2.jpg"]
  29.  
  30. ]
  31. ];
  32.  
  33. {
  34. "product": {
  35. "attribute_set_id": 4,
  36. "type_id": "simple",
  37. "sku": "B201-SKU",
  38. "name": "B201",
  39. "price": 25,
  40. "status": 1,
  41. "custom_attributes": {
  42. "description": "Heavy Duty Brake Cables",
  43. "meta_description": "Some describing text",
  44. "image" : "/w/i/sample_1.jpg",
  45. "small_image": "/w/i/sample_2.jpg",
  46. "thumbnail": "/w/i/sample_3.jpg"
  47. }
  48. }
  49. }
  50.  
  51. {
  52. "product": {
  53. "media_gallery_entries": [
  54. {
  55. "media_type": "image",
  56. "label": "someimagelabelhere",
  57. "position": 0,
  58. "disabled": false,
  59. "file": "http://mymagentosite.com/pub/media/catalog/product/d/7/image.jpg",
  60. "content": {
  61. "base64_encoded_data": "string",
  62. "type": "string",
  63. "name": "string"
  64. },
  65. }
  66. ],
  67. }
  68. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement