Advertisement
Guest User

Untitled

a guest
Feb 11th, 2016
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. # Product
  2.  
  3. ## Get all products
  4.  
  5. ### URL
  6.  
  7. ```
  8. [GET] api/products
  9. ```
  10.  
  11. ### Paremeters
  12.  
  13. | Name | Type | Description |
  14. |--------|:--------:|:---------------------------|
  15. | | | |
  16.  
  17. ### Response
  18.  
  19. ```headers
  20. Status: 200 OK
  21. Link: api/products
  22. ```
  23.  
  24. ```json
  25. {
  26. "data": [
  27. ...muchosProductos, {
  28. "id": 123,
  29. "name": "mandil de colegio",
  30. "price": 15.00,
  31. "image_url": "url_de_la_imagen.jpg",
  32. "link": "url_del_producto",
  33. "line_id": 1,
  34. "sub_line_id": 12
  35. }
  36. ]
  37. }
  38. ```
  39.  
  40. Props
  41.  
  42. | Name | Type | Description |
  43. |--------|:--------:|:---------------------------|
  44. | id | number | id del producto |
  45. | line_id | number | id de la linea |
  46. | sub_line_id | number | id de la subcategoria de la linea |
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement