1234567891011121314151617181920212223242526272829303132 |
- /login - POST login
- /login - DELETE logout
- /login - GET STATUS
- # INVENTORY
- inventory/items - GET -> get all items
- inventory/item - POST create items
- inventory/item/<item_id> - GET get item by id
- inventory/item/<item_id> - UPDATE item by id
- inventory/item/<item_id> - DELETE item by id
- inventory/sites - GET -> get all site
- inventory/site - POST create site
- inventory/site/<site_id> - GET get site by id
- inventory/site/<site_id> - UPDATE site by id
- inventory/site/<site_id> - DELETE site by id
- inventory/contacts - GET -> get all contact
- inventory/contact - POST create contact
- inventory/contact/<contact_id> - GET get contact by id
- inventory/contact/<contact_id> - UPDATE contact by id
- inventory/contact/<contact_id> - DELETE contact by id
- inventory/groups - GET -> get all groups with items array id
- inventory/group - POST create group with items ids
- inventory/group/<contact_id> - GET get group by id
- inventory/group/<contact_id>/item/<item_id> - POST add item to group
- inventory/group/<contact_id>/item/<item_id> - DELETE delete item to group
- inventory/group/<contact_id> - DELETE group by id
|