gplsek / fitmoostore

fitmostore
GNU General Public License v2.0
0 stars 0 forks source link

Edit Product #4

Closed gplsek closed 10 years ago

gplsek commented 10 years ago

Create API end point to edit product

jg77merten commented 10 years ago

============PRODUCT ITEM UPDATE========== WORKS FOR ADMIN AND PRODUCT_OWNER PUT http://fitmoostore.loc/fit_store/product/(int:product_id) Cookie: SESSb22f1e1c07a26da425a441410bf4eb41=zr3uGeM8N5XPpazwjQuLqhDTO38c0BykGAe3wqGJCCw X-CSRF-Token: wxLWK_63sqCeCZfwQVMj2o6cuBimJwECFQwmSd3FnUY Content-Type: application/json { "title": "shoes_edited", "sku": "shoes_edited", "commerce_price_amount": "5000", "commerce_price_currency_code": "USD", "type": "shoes", "field_shoe_size": "10" } -- response -- {"sku":"shoes_edited","title":"shoes_edited","revision_uid":"4","status":"1","log":"","revision_timestamp":1393602033,"data":false,"product_id":"18","type":"shoes","language":"","uid":"4","created":"1393600444","changed":1393602033,"commerce_price":{"amount":"5000","currency_code":"USD","data":{"components":[]}},"field_image_url":null,"field_shoe_size":"10","commerce_stock":null,"rdf_mapping":[],"old_revision_id":"23","revision_id":"24","attribute_fields":["field_shoe_size"],"commerce_price_formatted":"$50.00"}

jg77merten commented 10 years ago

===============PRODUCT NODE UPDATE========== PUT http://fitmoostore.loc/fit_store/node/{(int)node_id} X-CSRF-Token: pMZOgFT0h9e5zbkozSjO4BGXD7hJG2t7TZ6KBiuERu0 Cookie: SESSb22f1e1c07a26da425a441410bf4eb41=4_jqhvK5zKv-LbAg6luzpLFiqkBo8bPe-i6f8YQUOCw Content-Type: application/json { "title": "Workout Shirt Edited", "sku": "sku21edited", "description": "description edited", "type": "shoes" } -- response -- {"nid":"3","uri":"http://fitmoostore.loc/fit_store/node/3"}

jg77merten commented 10 years ago

============ MULTIPLE ITEMS UPDATE========== PUT http://fitmoostore.loc/fit_store/product/{(int) one_product_id_from_the_list} X-CSRF-Token: RBaBiV2RGBX5tMsikckT76NeJjQKA8bb11xuwC4Sm40 Cookie: SESSb22f1e1c07a26da425a441410bf4eb41=im7gsVJnO_43mYc9aNG3_TfK-wVLk7H8RP7vReS3cXE Content-Type: application/json { "items": [{ "13": [{"sku":"ws-13_edited"}], "14": [{"sku":"ws-14_edited"}], "15": [{"sku":"ws-15_edited"}] }] } -- response -- [{"sku":"ws-13_edited","title":"Workout Shirt","revision_uid":"4","status":"1","log":"","revision_timestamp":1393835431,"data":false,"product_id":"13","type":"event","language":"","uid":"4","created":"1393324299","changed":1393835431,"commerce_price":{"amount":"20","currency_code":"USD","data":{"components":[]}},"field_date":null,"field_location":null,"commerce_stock":20,"field_description":"test","field_fitmooid":null,"rdf_mapping":[],"old_revision_id":"14","revision_id":"27","attribute_fields":[],"commerce_price_formatted":"$0.20"},{"sku":"ws-14_edited","title":"Workout Shirt","revision_uid":"4","status":"1","log":"","revision_timestamp":1393835431,"data":false,"product_id":"14","type":"event","language":"","uid":"4","created":"1393324348","changed":1393835431,"commerce_price":{"amount":"20","currency_code":"USD","data":{"components":[]}},"field_date":null,"field_location":null,"commerce_stock":20,"field_description":"test","field_fitmooid":null,"rdf_mapping":[],"old_revision_id":"15","revision_id":"28","attribute_fields":[],"commerce_price_formatted":"$0.20"},{"sku":"ws-15_edited","title":"Workout Shirt","revision_uid":"4","status":"1","log":"","revision_timestamp":1393835431,"data":false,"product_id":"15","type":"event","language":"","uid":"4","created":"1393324459","changed":1393835431,"commerce_price":{"amount":"20","currency_code":"USD","data":{"components":[]}},"field_date":null,"field_location":null,"commerce_stock":20,"field_description":"test","field_fitmooid":null,"rdf_mapping":[],"old_revision_id":"16","revision_id":"29","attribute_fields":[],"commerce_price_formatted":"$0.20"}]