Advertisement
achmadzainulkarim

Save The Bill API List

Jul 7th, 2021
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.27 KB | None | 0 0
  1. +--------+--------------------------------------------------+------------+
  2. | Verb | Path | Middleware |
  3. +--------+--------------------------------------------------+------------+
  4. | GET | / | |
  5. | GET | /email | |
  6. | GET | /api/v1/auth | |
  7. | POST | /api/v1/auth/login | |
  8. | POST | /api/v1/auth/register | |
  9. | POST | /api/v1/auth/verification | |
  10. | POST | /api/v1/auth/password/update | |
  11. | POST | /api/v1/auth/password/forgot | |
  12. | GET | /api/v1/user | auth |
  13. | POST | /api/v1/user/create | auth |
  14. | GET | /api/v1/user/current | auth |
  15. | GET | /api/v1/user/{id} | auth |
  16. | GET | /api/v1/user/{id}/get | auth |
  17. | POST | /api/v1/user/{id}/update | auth |
  18. | DELETE | /api/v1/user/{id}/delete | auth |
  19. | GET | /api/v1/store | auth |
  20. | POST | /api/v1/store/create | auth |
  21. | GET | /api/v1/store/{id}/get | auth |
  22. | POST | /api/v1/store/{id}/update | auth |
  23. | DELETE | /api/v1/store/{id}/delete | auth |
  24. | GET | /api/v1/store/{id}/admin | auth |
  25. | POST | /api/v1/store/{id}/admin/invite | auth |
  26. | DELETE | /api/v1/store/{id}/admin/{user_id}/delete | auth |
  27. | POST | /api/v1/store/{id}/admin/{user_id}/update-status | auth |
  28. | GET | /api/v1/store/category | auth |
  29. | POST | /api/v1/store/category/create | auth |
  30. | GET | /api/v1/store/category/{id}/get | auth |
  31. | POST | /api/v1/store/category/{id}/update | auth |
  32. | DELETE | /api/v1/store/category/{id}/delete | auth |
  33. | GET | /api/v1/category | auth |
  34. | POST | /api/v1/category/create | auth |
  35. | GET | /api/v1/category/{id}/get | auth |
  36. | POST | /api/v1/category/{id}/update | auth |
  37. | DELETE | /api/v1/category/{id}/delete | auth |
  38. | GET | /api/v1/customer | auth |
  39. | POST | /api/v1/customer/create | auth |
  40. | GET | /api/v1/customer/{id}/get | auth |
  41. | POST | /api/v1/customer/{id}/update | auth |
  42. | DELETE | /api/v1/customer/{id}/delete | auth |
  43. | GET | /api/v1/brand | auth |
  44. | POST | /api/v1/brand/create | auth |
  45. | GET | /api/v1/brand/{id}/get | auth |
  46. | POST | /api/v1/brand/{id}/update | auth |
  47. | DELETE | /api/v1/brand/{id}/delete | auth |
  48. | GET | /api/v1/table | auth |
  49. | POST | /api/v1/table/create | auth |
  50. | GET | /api/v1/table/{id}/get | auth |
  51. | POST | /api/v1/table/{id}/update | auth |
  52. | DELETE | /api/v1/table/{id}/delete | auth |
  53. | GET | /api/v1/product | auth |
  54. | POST | /api/v1/product/create | auth |
  55. | GET | /api/v1/product/{id}/get | auth |
  56. | POST | /api/v1/product/{id}/update | auth |
  57. | POST | /api/v1/product/{id}/update-image | auth |
  58. | DELETE | /api/v1/product/{id}/delete | auth |
  59. | GET | /api/v1/product/favorite | auth |
  60. | POST | /api/v1/product/favorite/create | auth |
  61. | DELETE | /api/v1/product/favorite/{id}/delete | auth |
  62. | GET | /api/v1/order | auth |
  63. | POST | /api/v1/order/create | auth |
  64. | GET | /api/v1/order/{id}/get | auth |
  65. | GET | /api/v1/order/{id}/invoice | auth |
  66. | POST | /api/v1/order/{id}/update | auth |
  67. | POST | /api/v1/order/{id}/update-status | auth |
  68. | DELETE | /api/v1/order/{id}/delete | auth |
  69. | POST | /api/v1/orderitem/{id}/update | auth |
  70. | DELETE | /api/v1/orderitem/{id}/delete | auth |
  71. +--------+--------------------------------------------------+------------+
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement