123456789101112131415161718192021222324252627282930313233343536373839 |
- api/login - POST login
- api/logout - DELETE logout
- api/password POST change password
- # INVENTORY
- api/inventory/items - GET -> get all items
- api/inventory/item - POST create items
- api/inventory/item/<item_id> - GET get item by id
- api/inventory/item/<item_id> - UPDATE item by id
- api/inventory/item/<item_id> - DELETE item by id
- api/inventory/item/template GET get null item template json
- api/inventory/sites - GET -> get all site
- api/inventory/site - POST create site
- api/inventory/site/<site_id> - GET get site by id
- api/inventory/site/<site_id> - UPDATE site by id
- api/inventory/site/<site_id> - DELETE site by id
- api/inventory/site/template GET get null item template json
- api/inventory/site/<int:siteID>/items GET associated items with this
- api/inventory/contacts - GET -> get all contact
- api/inventory/contact - POST create contact
- api/inventory/contact/<contact_id> - GET get contact by id
- api/inventory/contact/<contact_id> - UPDATE contact by id
- api/inventory/contact/<contact_id> - DELETE contact by id
- api/inventory/contact/template GET get null item template json
- api/inventory/contact/<int:siteID>/items GET associated items with this
- api/inventory/groups - GET -> get all groups with items array id
- api/inventory/group - POST create group with items ids
- api/inventory/group/<contact_id> - GET get group by id
- api/inventory/group/<contact_id>/item/<item_id> - POST add item to group
- api/inventory/group/<contact_id>/item/<item_id> - DELETE delete item to group
- api/inventory/group/<contact_id> - DELETE group by id
- api/inventory/group/template GET get null item template json
- api/inventory/group/<int:siteID>/items GET associated items with this
|