diff --git a/api_collections/api_collections.md b/api_collections/api_collections.md new file mode 100644 index 0000000..a67f5a5 --- /dev/null +++ b/api_collections/api_collections.md @@ -0,0 +1,22 @@ +## **ERP Backend API Collections** + +This workspace is dedicated to the ERP backend API, organized into collections that represent individual endpoints. Each collection contains requests for various HTTP methods, including GET, POST, PUT, and DELETE, corresponding to specific functionalities within the ERP system. + +**Note:** For endpoints that include the `/list` route, you have the flexibility to customize the data retrieval using query parameters. Specifically, you can pass `page` and `filter` as query parameters to tailor the results. If these parameters are omitted, the API will return all available data. + +**Example:** + +- List all accreditations: + +``` +localhost://3000/accreditation/list +``` + +- Customized listing with pagination and filtering: + +``` +localhost://3000/accreditation/list?page=2&limit=3 +``` + +--- +Import this into an API Client of your choice (Postman, Thunder Client, etc.) diff --git a/api_collections/archive.json b/api_collections/archive.json new file mode 100644 index 0000000..adefe9d --- /dev/null +++ b/api_collections/archive.json @@ -0,0 +1,34 @@ +{ + "collection": { + "318b0772-c43a-4602-b841-4ec03c4880d0": true, + "3553abfa-38de-44cc-b5d4-b1b4d49eca31": true, + "1117bf5a-20c5-4c12-bceb-2dc4b198068c": true, + "463becc9-b939-4e98-b18a-13f91b49e3d9": true, + "3fd36682-4620-4f75-99dc-a8fa324e883c": true, + "703b39d0-931c-4e08-8d69-1cfe5cab5f01": true, + "564e9231-fc2c-48e3-a818-4d8a255ca02d": true, + "381df9f6-ab5a-4783-a1f8-b1ca4f982993": true, + "4bdf746b-9314-4917-abb1-24695fc3995b": true, + "897739ed-07ee-4590-9424-e32079dbab30": true, + "5652ddf3-92ce-4328-9c22-763723c2fc23": true, + "5732c019-3ee0-4a71-81ee-06ad720c6139": true, + "8165772d-f964-4af6-9eeb-79f354729473": true, + "97a57a2f-a2c1-48a4-9e09-56325ff2de25": true, + "7ae5a647-af59-4395-bce3-942f160ef874": true, + "871f470e-fc04-404f-9849-c89f4d79be51": true, + "a7837d0b-00d7-4709-9f91-d4d89be256b1": true, + "9dc56da6-7565-4ad0-a5c3-b0e9eebb7461": true, + "a9c397c6-0e45-4e4d-9ab7-38193d65008e": true, + "d64c14a5-362a-41e9-9fa1-5f7d93ab1c02": true, + "b112685f-00ae-4493-ba33-f4ead282236b": true, + "c894ed4d-56af-4346-8fff-d6286eb85e3b": true, + "d528bf3a-eb58-48ec-8a1c-c79c62d673e2": true, + "cb8df51e-1014-4358-919c-3378ac431d62": true, + "ed82edec-9c7c-4fce-a00b-e531288e0c80": true, + "f37302e2-693b-4fa6-b926-1cf0e5032e6d": true, + "deaa0fc0-e06f-4427-8051-b2f3550a8aa0": true, + "f54f8502-855b-4e1f-8ad7-8a4d3e33ce2c": true, + "fda43fc4-6ae2-4d95-88ff-31f5e2ceb0ba": true, + "f291aff3-514f-42be-a9bb-a9159018ba59": true + } +} \ No newline at end of file diff --git a/api_collections/collection/1117bf5a-20c5-4c12-bceb-2dc4b198068c.json b/api_collections/collection/1117bf5a-20c5-4c12-bceb-2dc4b198068c.json new file mode 100644 index 0000000..36c6bbe --- /dev/null +++ b/api_collections/collection/1117bf5a-20c5-4c12-bceb-2dc4b198068c.json @@ -0,0 +1 @@ +{"info":{"_postman_id":"1117bf5a-20c5-4c12-bceb-2dc4b198068c","name":"Activity Blurprint","schema":"https://schema.getpostman.com/json/collection/v2.1.0/collection.json"},"item":[{"name":"list activity blueprints","id":"1ceeccff-b831-4eba-ae89-a7624988a1f0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":{"raw":"localhost:3000/activityBlueprint/list","host":["localhost"],"port":"3000","path":["activityBlueprint","list"]}},"response":[]},{"name":"add activity blueprint","id":"016c821e-33e4-404b-b95c-76581da978a2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":{"raw":"localhost:3000/activityBlueprint/add","host":["localhost"],"port":"3000","path":["activityBlueprint","add"]}},"response":[]},{"name":"delete activity blueprint","id":"055d223b-1ddd-4d53-be1b-0d2342ade24d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":{"raw":"localhost:3000/activityBlueprint/delete/:{id}","host":["localhost"],"port":"3000","path":["activityBlueprint","delete",":{id}"],"variable":[{"key":"{id}","value":"","description":"Activity Blurprint Id"}]}},"response":[]},{"name":"update activity blueprint","id":"203ce6a5-5070-4651-a737-3926040cfbd2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":{"raw":"localhost:3000/activityBlueprint/update/:{id}","host":["localhost"],"port":"3000","path":["activityBlueprint","update",":{id}"],"variable":[{"key":"{id}","value":"","description":"Activity Blueprint Id"}]}},"response":[]}]} \ No newline at end of file diff --git a/api_collections/collection/318b0772-c43a-4602-b841-4ec03c4880d0.json b/api_collections/collection/318b0772-c43a-4602-b841-4ec03c4880d0.json new file mode 100644 index 0000000..ff7bb12 --- /dev/null +++ b/api_collections/collection/318b0772-c43a-4602-b841-4ec03c4880d0.json @@ -0,0 +1 @@ +{"info":{"_postman_id":"318b0772-c43a-4602-b841-4ec03c4880d0","name":"Faculty","schema":"https://schema.getpostman.com/json/collection/v2.1.0/collection.json"},"item":[{"name":"list faculties","id":"4b603237-5c29-48e8-a43d-c73a8c73b652","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":{"raw":"localhost:3000/faculty/list","host":["localhost"],"port":"3000","path":["faculty","list"]}},"response":[]},{"name":"create faculty","id":"345d70ee-8ff5-4da6-8fb9-3e334d8a33b8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":{"raw":"localhost:3000/faculty/create","host":["localhost"],"port":"3000","path":["faculty","create"]}},"response":[]},{"name":"delete faculty","id":"440ee4c1-7c60-4b46-ae49-aedc063afc38","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":{"raw":"localhost:3000/faculty/delete/:{id}","host":["localhost"],"port":"3000","path":["faculty","delete",":{id}"],"variable":[{"key":"{id}","value":"","description":"Faculty Id"}]}},"response":[]},{"name":"update faculty","id":"ffafc819-10ca-4104-8005-0398869dec77","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":{"raw":"localhost:3000/faculty/update/:{id}","host":["localhost"],"port":"3000","path":["faculty","update",":{id}"],"variable":[{"key":"{id}","value":"","description":"Faculty Id"}]}},"response":[]}]} \ No newline at end of file diff --git a/api_collections/collection/3553abfa-38de-44cc-b5d4-b1b4d49eca31.json b/api_collections/collection/3553abfa-38de-44cc-b5d4-b1b4d49eca31.json new file mode 100644 index 0000000..ef0f6b3 --- /dev/null +++ b/api_collections/collection/3553abfa-38de-44cc-b5d4-b1b4d49eca31.json @@ -0,0 +1 @@ +{"info":{"_postman_id":"3553abfa-38de-44cc-b5d4-b1b4d49eca31","name":"Articles API","schema":"https://schema.getpostman.com/json/collection/v2.1.0/collection.json"},"item":[{"name":"Create Article","id":"f47cc60d-bb8e-409a-a037-c272442fce67","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n \"title\": \"Article2\",\n \"tags\": [\"Cloud\", \"custom\"],\n \"content\": \"This is my second Article. Hope you enjoy it\",\n \"author\": \"65577f49910050d6c99d70f9\",\n \"likes\": 5,\n \"comments\": \"65578017910050d6c99d70ff\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{URL}}/articles","host":["{{URL}}"],"path":["articles"]}},"response":[]},{"name":"Get Articles","id":"574807d9-9698-4a82-9d94-2c04d1482dee","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":{"raw":"{{URL}}/articles","host":["{{URL}}"],"path":["articles"]}},"response":[]},{"name":"Update Article","id":"88be54f3-7a56-4efe-8198-85906623f8a1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n \"title\": \"Article2\",\n \"tags\": [\"Cloud\", \"custom\"],\n \"content\": \"This is my second Article. Enjoy! :)\",\n \"author\": \"65577f49910050d6c99d70f9\",\n \"views\": 15,\n \"likes\": 8,\n \"comments\": \"65578017910050d6c99d70ff\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{URL}}/articles/655781e0b836bfdcb15262f3","host":["{{URL}}"],"path":["articles","655781e0b836bfdcb15262f3"]}},"response":[]},{"name":"Delete Article","id":"62bbb031-cb0c-4624-9c39-9d5bf1537fe9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":{"raw":"{{URL}}/articles/655781e0b836bfdcb15262f3","host":["{{URL}}"],"path":["articles","655781e0b836bfdcb15262f3"]}},"response":[]}]} \ No newline at end of file diff --git a/api_collections/collection/381df9f6-ab5a-4783-a1f8-b1ca4f982993.json b/api_collections/collection/381df9f6-ab5a-4783-a1f8-b1ca4f982993.json new file mode 100644 index 0000000..d34b89c --- /dev/null +++ b/api_collections/collection/381df9f6-ab5a-4783-a1f8-b1ca4f982993.json @@ -0,0 +1 @@ +{"info":{"_postman_id":"381df9f6-ab5a-4783-a1f8-b1ca4f982993","name":"Users","schema":"https://schema.getpostman.com/json/collection/v2.1.0/collection.json"},"item":[{"name":"get users","id":"6ee176ae-4113-4dc8-861b-1063a8c4addf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":{"raw":"localhost:3000/users/get","host":["localhost"],"port":"3000","path":["users","get"]}},"response":[]},{"name":"add user","id":"de847893-c903-4c79-bcdf-3fe4fd515587","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":{"raw":"localhost:3000/users/add","host":["localhost"],"port":"3000","path":["users","add"]}},"response":[]}]} \ No newline at end of file diff --git a/api_collections/collection/3fd36682-4620-4f75-99dc-a8fa324e883c.json b/api_collections/collection/3fd36682-4620-4f75-99dc-a8fa324e883c.json new file mode 100644 index 0000000..14f6d1b --- /dev/null +++ b/api_collections/collection/3fd36682-4620-4f75-99dc-a8fa324e883c.json @@ -0,0 +1 @@ +{"info":{"_postman_id":"3fd36682-4620-4f75-99dc-a8fa324e883c","name":"Organization","schema":"https://schema.getpostman.com/json/collection/v2.1.0/collection.json"},"item":[{"name":"list organizations","id":"93c2a81f-4a2e-4ed4-ac9d-be6ec82d1995","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":{"raw":"localhost:3000/organization/list","host":["localhost"],"port":"3000","path":["organization","list"]}},"response":[]},{"name":"add organization","id":"09176683-c6a9-409b-bb08-cd9f0b77ed4d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":{"raw":"localhost:3000/organization/add","host":["localhost"],"port":"3000","path":["organization","add"]}},"response":[]},{"name":"delete organization","id":"7ff14ca0-aa93-4db8-bd34-8986be1220c0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":{"raw":"localhost:3000/organization/delete/:{id}","host":["localhost"],"port":"3000","path":["organization","delete",":{id}"],"variable":[{"key":"{id}","value":"","description":"Organization Id"}]}},"response":[]},{"name":"update organization","id":"cf14fa2c-1328-474d-92b5-952c039e99cc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":{"raw":"localhost:3000/organization/update/:{id}","host":["localhost"],"port":"3000","path":["organization","update",":{id}"],"variable":[{"key":"{id}","value":"","description":"Organization Id"}]}},"response":[]}]} \ No newline at end of file diff --git a/api_collections/collection/463becc9-b939-4e98-b18a-13f91b49e3d9.json b/api_collections/collection/463becc9-b939-4e98-b18a-13f91b49e3d9.json new file mode 100644 index 0000000..dd325fc --- /dev/null +++ b/api_collections/collection/463becc9-b939-4e98-b18a-13f91b49e3d9.json @@ -0,0 +1 @@ +{"info":{"_postman_id":"463becc9-b939-4e98-b18a-13f91b49e3d9","name":"ERP Backend","schema":"https://schema.getpostman.com/json/collection/v2.1.0/collection.json"},"item":[{"name":"Accreditation","item":[{"name":"list accreditations","id":"5b590b65-0810-425b-8b99-428921e674f0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":{"raw":"localhost:3000/accreditation/list","host":["localhost"],"port":"3000","path":["accreditation","list"]}},"response":[]},{"name":"add accreditation","id":"aaac0b73-02b8-4071-9e21-f73f83907425","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":{"raw":"localhost:3000/accreditation/add","host":["localhost"],"port":"3000","path":["accreditation","add"]}},"response":[]},{"name":"delete accreditation","id":"da95cbbd-46cb-45ff-b7c7-489dc523f2dc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":{"raw":"localhost:3000/accreditation/delete/:{id}","host":["localhost"],"port":"3000","path":["accreditation","delete",":{id}"],"variable":[{"key":"{id}","value":"","description":"Accreditation iD"}]}},"response":[]},{"name":"update accreditation","id":"9db7973a-3ba4-4468-beb7-ce547c9fc454","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":{"raw":"localhost:3000/accreditation/update/:{id}","host":["localhost"],"port":"3000","path":["accreditation","update",":{id}"],"variable":[{"key":"{id}","value":"","description":"Accreditation ID"}]}},"response":[]}],"id":"b130d2cf-1774-47e7-9cc8-e67fa8fa7a96"},{"name":"Activity","item":[{"name":"list accreditations","id":"6a661093-8d40-4f10-b69f-3a32f28ef0e4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":{"raw":"localhost:3000/activity/list","host":["localhost"],"port":"3000","path":["activity","list"]}},"response":[]},{"name":"add accreditation","id":"cc3ac787-70f0-4134-9f83-eae5640fc881","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":{"raw":"localhost:3000/activity/add","host":["localhost"],"port":"3000","path":["activity","add"]}},"response":[]},{"name":"delete accreditation","id":"1bbd5d96-d4ca-499e-8203-695b3808643b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":{"raw":"localhost:3000/activity/delete/:{id}","host":["localhost"],"port":"3000","path":["activity","delete",":{id}"],"variable":[{"key":"{id}","value":"","description":"Activity ID"}]}},"response":[]},{"name":"update accreditation","id":"6248503c-3e73-4c0d-9763-59ce7394462d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":{"raw":"localhost:3000/activity/update/:{id}","host":["localhost"],"port":"3000","path":["activity","update",":{id}"],"variable":[{"key":"{id}","value":"","description":"Activity ID"}]}},"response":[]}],"id":"ce64b4fe-b276-4fab-a309-b4a6cb28d6d8"},{"name":"Activity Blueprint","item":[{"name":"get activity blueprints","id":"2e879b85-f26d-42f0-b401-c5ff359feb02","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":{"raw":"localhost:3000/activityBlueprint/list","host":["localhost"],"port":"3000","path":["activityBlueprint","list"]}},"response":[]},{"name":"add activity blueprint","id":"5d69d2ca-1abc-4705-bbc4-2f01cf3f789e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":{"raw":"localhost:3000/activiyBlueprint/add","host":["localhost"],"port":"3000","path":["activiyBlueprint","add"]}},"response":[]},{"name":"delete activity blueprint","id":"675e6dc4-6b2f-4d1f-88bb-155d3e9e33ec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":{"raw":"localhost:3000/activityBlueprint/delete/:{id}","host":["localhost"],"port":"3000","path":["activityBlueprint","delete",":{id}"],"variable":[{"key":"{id}","value":"","description":"Activity Blueprint ID"}]}},"response":[]},{"name":"New Request","id":"83abcbd2-564c-4a7a-8ebe-e2cb5d25edc1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":{"raw":"localhost:3000/activityBlueprint/update/:{id}","host":["localhost"],"port":"3000","path":["activityBlueprint","update",":{id}"],"variable":[{"key":"{id}","value":"","description":"Activity Blueprint ID"}]}},"response":[]}],"id":"cebc416c-d819-4ac6-b6dc-b9d11c8f78a7"},{"name":"Assignment","item":[{"name":"list accreditations","id":"e21bb38e-3bb7-4cbb-9cd4-b939363c3100","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":{"raw":"localhost:3000/assignment/list","host":["localhost"],"port":"3000","path":["assignment","list"]}},"response":[]},{"name":"add accreditation","id":"0c3b26a3-909b-4a82-a3f8-54b6aff6c3b6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":{"raw":"localhost:3000/assignment/add","host":["localhost"],"port":"3000","path":["assignment","add"]}},"response":[]},{"name":"delete accreditation","id":"6c901808-f622-4747-b976-633e0a539b9a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":{"raw":"localhost:3000/assignment/delete/:{id}","host":["localhost"],"port":"3000","path":["assignment","delete",":{id}"],"variable":[{"key":"{id}","value":"","description":"Assignment ID"}]}},"response":[]},{"name":"update accreditation","id":"0ee731ec-7ae1-4add-9876-026cc8e15485","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":{"raw":"localhost:3000/assignment/update/:{id}","host":["localhost"],"port":"3000","path":["assignment","update",":{id}"],"variable":[{"key":"{id}","value":"","description":"Assignment ID"}]}},"response":[]}],"id":"48a5002e-77cd-4c3b-ae43-e807084c0a24"},{"name":"Attendance Copy","item":[{"name":"list accreditations","id":"275f4928-c63e-4bdb-ab29-af7660ad564e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":{"raw":"localhost:3000/attendance/list","host":["localhost"],"port":"3000","path":["attendance","list"]}},"response":[]},{"name":"add accreditation","id":"13705294-2dde-4430-ad8a-92f1ae0a64d8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":{"raw":"localhost:3000/attendance/add","host":["localhost"],"port":"3000","path":["attendance","add"]}},"response":[]},{"name":"delete accreditation","id":"70478a9b-908c-4c1f-9eaa-463cce386f7a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":{"raw":"localhost:3000/attendance/delete/:{id}","host":["localhost"],"port":"3000","path":["attendance","delete",":{id}"],"variable":[{"key":"{id}","value":"","description":"Attendance ID"}]}},"response":[]},{"name":"update accreditation","id":"dc68f7fe-cb3f-43d9-a2de-e12e0da45a85","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":{"raw":"localhost:3000/assignment/update/:{id}","host":["localhost"],"port":"3000","path":["assignment","update",":{id}"],"variable":[{"key":"{id}","value":"","description":"Attendance ID"}]}},"response":[]}],"id":"ad0623e5-34cd-4e6b-90eb-d423d8fc16d0"},{"name":"Auth","item":[{"name":"login","id":"d94e9300-7a0c-4d55-847e-f2a5dae38622","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":{"raw":"localhost:3000/auth","host":["localhost"],"port":"3000","path":["auth"]}},"response":[]},{"name":"validate user","id":"5c761975-7e33-4329-a242-04f769a32dca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":{"raw":"localhost:3000/auth/validateUser","host":["localhost"],"port":"3000","path":["auth","validateUser"]}},"response":[]},{"name":"send otp","id":"916fe952-d7ab-43d3-b98f-d136f9acf243","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":{"raw":"localhost:3000/auth/sendOTP","host":["localhost"],"port":"3000","path":["auth","sendOTP"]}},"response":[]},{"name":"reset password","id":"213157be-abd2-423b-8b76-425ca41c0d39","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":{"raw":"localhost:3000/auth/resetPassword","host":["localhost"],"port":"3000","path":["auth","resetPassword"]}},"response":[]}],"id":"3e2294d8-3eb5-46bc-b94b-ce3cef87c77b"}]} \ No newline at end of file diff --git a/api_collections/collection/4bdf746b-9314-4917-abb1-24695fc3995b.json b/api_collections/collection/4bdf746b-9314-4917-abb1-24695fc3995b.json new file mode 100644 index 0000000..00d3261 --- /dev/null +++ b/api_collections/collection/4bdf746b-9314-4917-abb1-24695fc3995b.json @@ -0,0 +1 @@ +{"info":{"_postman_id":"4bdf746b-9314-4917-abb1-24695fc3995b","name":"Accreditation","schema":"https://schema.getpostman.com/json/collection/v2.1.0/collection.json"},"item":[{"name":"list accreditations","id":"9d40bbed-ecee-4eab-821f-5799f7bbd16d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":{"raw":"localhost:3000/accreditation/list","host":["localhost"],"port":"3000","path":["accreditation","list"]}},"response":[]},{"name":"add accreditation","id":"41cb2d4d-313f-455c-9240-b8c0ee4ec43d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":{"raw":"localhost:3000/accreditation/add","host":["localhost"],"port":"3000","path":["accreditation","add"]}},"response":[]},{"name":"delete accreditation","id":"3dcf3c29-26f8-4042-8831-54f15c22b2a5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":{"raw":"localhost:3000/accreditation/delete/:{id}","host":["localhost"],"port":"3000","path":["accreditation","delete",":{id}"],"variable":[{"key":"{id}","value":"","description":"Accreditation Id"}]}},"response":[]},{"name":"update accreditation","id":"6e30a369-5484-4cf7-8b40-80521d25d5d2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":{"raw":"localhost:3000/accreditation/update/:{id}","host":["localhost"],"port":"3000","path":["accreditation","update",":{id}"],"variable":[{"id":"1763632d-675c-4fdc-bd9e-e4215371882b","key":"{id}","value":"","description":"Accreditation Id"}]}},"response":[]}]} \ No newline at end of file diff --git a/api_collections/collection/564e9231-fc2c-48e3-a818-4d8a255ca02d.json b/api_collections/collection/564e9231-fc2c-48e3-a818-4d8a255ca02d.json new file mode 100644 index 0000000..eae11ca --- /dev/null +++ b/api_collections/collection/564e9231-fc2c-48e3-a818-4d8a255ca02d.json @@ -0,0 +1 @@ +{"info":{"_postman_id":"564e9231-fc2c-48e3-a818-4d8a255ca02d","name":"Student","schema":"https://schema.getpostman.com/json/collection/v2.1.0/collection.json"},"item":[{"name":"list students","id":"89639ebb-0923-411a-b006-fe399785365a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":{"raw":"localhost:3000/student/list","host":["localhost"],"port":"3000","path":["student","list"]}},"response":[]},{"name":"create student","id":"0519f8fa-a65b-4648-b20c-845230366589","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":{"raw":"localhost:3000/student/create","host":["localhost"],"port":"3000","path":["student","create"]}},"response":[]},{"name":"delete student","id":"85365a84-7703-4c8b-9659-4eb98ed601e4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":{"raw":"localhost:3000/student/delete/:{id}","host":["localhost"],"port":"3000","path":["student","delete",":{id}"],"variable":[{"key":"{id}","value":"","description":"Student Id"}]}},"response":[]},{"name":"update student","id":"4d064976-d6ea-40fd-b639-d5cc4f878544","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":{"raw":"localhost:3000/student/update/:{id}","host":["localhost"],"port":"3000","path":["student","update",":{id}"],"variable":[{"key":"{id}","value":"","description":"Student Id"}]}},"response":[]}]} \ No newline at end of file diff --git a/api_collections/collection/5652ddf3-92ce-4328-9c22-763723c2fc23.json b/api_collections/collection/5652ddf3-92ce-4328-9c22-763723c2fc23.json new file mode 100644 index 0000000..6d84c13 --- /dev/null +++ b/api_collections/collection/5652ddf3-92ce-4328-9c22-763723c2fc23.json @@ -0,0 +1 @@ +{"info":{"_postman_id":"5652ddf3-92ce-4328-9c22-763723c2fc23","name":"Exam","schema":"https://schema.getpostman.com/json/collection/v2.1.0/collection.json"},"item":[{"name":"list exams","id":"dea9bc2a-110b-4e2d-b972-ccc084b0ed11","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":{"raw":"localhost:3000/exam/list","host":["localhost"],"port":"3000","path":["exam","list"]}},"response":[]},{"name":"add exam","id":"445bc151-b0bc-4276-a920-c32d85a07366","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":{"raw":"localhost:3000/exam/add","host":["localhost"],"port":"3000","path":["exam","add"]}},"response":[]},{"name":"delete exam","id":"9539c0e5-db65-4afc-8bd2-b8b15f967e5e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":{"raw":"localhost:3000/exam/delete/:{id}","host":["localhost"],"port":"3000","path":["exam","delete",":{id}"],"variable":[{"key":"{id}","value":"","description":"Exam Id"}]}},"response":[]},{"name":"update exam","id":"6161108f-db64-4512-8b2e-cfcda118f0f5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":{"raw":"localhost:3000/exam/update/:{id}","host":["localhost"],"port":"3000","path":["exam","update",":{id}"],"variable":[{"key":"{id}","value":"","description":"Exam Id"}]}},"response":[]}]} \ No newline at end of file diff --git a/api_collections/collection/5732c019-3ee0-4a71-81ee-06ad720c6139.json b/api_collections/collection/5732c019-3ee0-4a71-81ee-06ad720c6139.json new file mode 100644 index 0000000..f16e6a3 --- /dev/null +++ b/api_collections/collection/5732c019-3ee0-4a71-81ee-06ad720c6139.json @@ -0,0 +1 @@ +{"info":{"_postman_id":"5732c019-3ee0-4a71-81ee-06ad720c6139","name":"Course","schema":"https://schema.getpostman.com/json/collection/v2.1.0/collection.json"},"item":[{"name":"list courses","id":"b5a6e425-351b-45b5-a952-4c8c9e1f6d59","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":{"raw":"localhost:3000/course/list","host":["localhost"],"port":"3000","path":["course","list"]}},"response":[]},{"name":"create course","id":"7170b072-3fd3-4638-8d96-a9bfd8dc5db5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":{"raw":"localhost:3000/course/create","host":["localhost"],"port":"3000","path":["course","create"]}},"response":[]},{"name":"delete course","id":"b0f066cf-fbcf-4b84-a5b6-00ae85208375","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":{"raw":"localhost:3000/course/delete/:{id}","host":["localhost"],"port":"3000","path":["course","delete",":{id}"],"variable":[{"key":"{id}","value":"","description":"Course Id"}]}},"response":[]},{"name":"update course","id":"c1526da0-51e4-4603-894f-9bd4755f7b84","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":{"raw":"localhost:3000/course/update/:{id}","host":["localhost"],"port":"3000","path":["course","update",":{id}"],"variable":[{"key":"{id}","value":"","description":"Course Id"}]}},"response":[]}]} \ No newline at end of file diff --git a/api_collections/collection/703b39d0-931c-4e08-8d69-1cfe5cab5f01.json b/api_collections/collection/703b39d0-931c-4e08-8d69-1cfe5cab5f01.json new file mode 100644 index 0000000..d35362d --- /dev/null +++ b/api_collections/collection/703b39d0-931c-4e08-8d69-1cfe5cab5f01.json @@ -0,0 +1 @@ +{"info":{"_postman_id":"703b39d0-931c-4e08-8d69-1cfe5cab5f01","name":"Performance","schema":"https://schema.getpostman.com/json/collection/v2.1.0/collection.json"},"item":[{"name":"test performance","id":"f3399116-16b0-4e66-822b-b2fe359453c0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":{"raw":"localhost:3000/performance","host":["localhost"],"port":"3000","path":["performance"]}},"response":[]}]} \ No newline at end of file diff --git a/api_collections/collection/7ae5a647-af59-4395-bce3-942f160ef874.json b/api_collections/collection/7ae5a647-af59-4395-bce3-942f160ef874.json new file mode 100644 index 0000000..3692138 --- /dev/null +++ b/api_collections/collection/7ae5a647-af59-4395-bce3-942f160ef874.json @@ -0,0 +1 @@ +{"info":{"_postman_id":"7ae5a647-af59-4395-bce3-942f160ef874","name":"Assignment","schema":"https://schema.getpostman.com/json/collection/v2.1.0/collection.json"},"item":[{"name":"list assignment","id":"317cd685-1654-486e-b3c2-3ec03db0f901","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":{"raw":"localhost:3000/assignment/list","host":["localhost"],"port":"3000","path":["assignment","list"]}},"response":[]},{"name":"add assignment","id":"e4d19317-43e6-4da5-b7ce-5fe713e0b711","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":{"raw":"localhost:3000/assignment/add","host":["localhost"],"port":"3000","path":["assignment","add"]}},"response":[]},{"name":"delete assignment","id":"c0aab8cb-f5be-4c86-aa90-46158d5d5f55","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":{"raw":"localhost:3000/assignment/delete/:{id}","host":["localhost"],"port":"3000","path":["assignment","delete",":{id}"],"variable":[{"key":"{id}","value":"","description":"Assignment Id"}]}},"response":[]},{"name":"update assignment","id":"77cf987c-dfa4-478b-b3a8-0b0de98195d8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":{"raw":"localhost:3000/assignment/update/:{id}","host":["localhost"],"port":"3000","path":["assignment","update",":{id}"],"variable":[{"key":"{id}","value":"","description":"Assignment Id"}]}},"response":[]}]} \ No newline at end of file diff --git a/api_collections/collection/8165772d-f964-4af6-9eeb-79f354729473.json b/api_collections/collection/8165772d-f964-4af6-9eeb-79f354729473.json new file mode 100644 index 0000000..e9d346d --- /dev/null +++ b/api_collections/collection/8165772d-f964-4af6-9eeb-79f354729473.json @@ -0,0 +1 @@ +{"info":{"_postman_id":"8165772d-f964-4af6-9eeb-79f354729473","name":"Infrastructure","schema":"https://schema.getpostman.com/json/collection/v2.1.0/collection.json"},"item":[{"name":"list infrastructures","id":"518fe922-202e-4148-959e-1f129f970dba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":{"raw":"localhost:3000/infrastructure/list","host":["localhost"],"port":"3000","path":["infrastructure","list"]}},"response":[]},{"name":"create infrastructure","id":"10102196-72b4-43df-9d38-2df1d542cf4f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":{"raw":"localhost:3000/infrastructure/create","host":["localhost"],"port":"3000","path":["infrastructure","create"]}},"response":[]},{"name":"delete infrastructure","id":"58ba466c-8b92-4bd3-9d33-d695cf429061","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":{"raw":"localhost:3000/infrastructure/delete/:{id}","host":["localhost"],"port":"3000","path":["infrastructure","delete",":{id}"],"variable":[{"key":"{id}","value":"","description":"Infrastructure Id"}]}},"response":[]},{"name":"update infrastructure","id":"0ae3c6d3-6cf1-41d2-bcbd-49d07dfc5099","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":{"raw":"localhost:3000/infrastructure/update/:{id}","host":["localhost"],"port":"3000","path":["infrastructure","update",":{id}"],"variable":[{"key":"{id}","value":"","description":"Infrastructure Id"}]}},"response":[]}]} \ No newline at end of file diff --git a/api_collections/collection/871f470e-fc04-404f-9849-c89f4d79be51.json b/api_collections/collection/871f470e-fc04-404f-9849-c89f4d79be51.json new file mode 100644 index 0000000..84ec9e0 --- /dev/null +++ b/api_collections/collection/871f470e-fc04-404f-9849-c89f4d79be51.json @@ -0,0 +1 @@ +{"info":{"_postman_id":"871f470e-fc04-404f-9849-c89f4d79be51","name":"Home Page","schema":"https://schema.getpostman.com/json/collection/v2.1.0/collection.json"},"item":[{"name":"get homepage","id":"ea737931-b9cb-4523-9522-acac1dd8185e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":{"raw":"localhost:3000","host":["localhost"],"port":"3000"}},"response":[]}]} \ No newline at end of file diff --git a/api_collections/collection/897739ed-07ee-4590-9424-e32079dbab30.json b/api_collections/collection/897739ed-07ee-4590-9424-e32079dbab30.json new file mode 100644 index 0000000..9a62ff5 --- /dev/null +++ b/api_collections/collection/897739ed-07ee-4590-9424-e32079dbab30.json @@ -0,0 +1 @@ +{"info":{"_postman_id":"897739ed-07ee-4590-9424-e32079dbab30","name":"User API","schema":"https://schema.getpostman.com/json/collection/v2.1.0/collection.json"},"item":[{"name":"Get Users","id":"2eb06e76-adc9-4f7b-96d5-a14b5682e5cd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":{"raw":"{{URL}}/users","host":["{{URL}}"],"path":["users"]}},"response":[]},{"name":"Register","id":"b6694de9-b962-42e4-b9cf-c7bca618f7de","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":{"raw":"{{URL}}/users","host":["{{URL}}"],"path":["users"]}},"response":[]},{"name":"Login","id":"9ad5257c-5e48-44db-b606-759b7c1051fe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":{"raw":"{{URL}}/users","host":["{{URL}}"],"path":["users"]}},"response":[]},{"name":"Update User","id":"a1183499-ccf8-4c75-a248-c4cccf47218d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":{"raw":"{{URL}}/users","host":["{{URL}}"],"path":["users"]}},"response":[]},{"name":"Delete User","id":"93bcca6b-0dec-45b9-8db3-36bc538f7096","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":{"raw":"{{URL}}/users","host":["{{URL}}"],"path":["users"]}},"response":[]}]} \ No newline at end of file diff --git a/api_collections/collection/97a57a2f-a2c1-48a4-9e09-56325ff2de25.json b/api_collections/collection/97a57a2f-a2c1-48a4-9e09-56325ff2de25.json new file mode 100644 index 0000000..b67f435 --- /dev/null +++ b/api_collections/collection/97a57a2f-a2c1-48a4-9e09-56325ff2de25.json @@ -0,0 +1 @@ +{"info":{"_postman_id":"97a57a2f-a2c1-48a4-9e09-56325ff2de25","name":"Paper","schema":"https://schema.getpostman.com/json/collection/v2.1.0/collection.json"},"item":[{"name":"list papers","id":"597dc619-24f7-4dda-931e-28931e1513c6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":{"raw":"localhost:3000/paper/list","host":["localhost"],"port":"3000","path":["paper","list"]}},"response":[]},{"name":"add paper","id":"f20a5ecd-419d-45e2-8c9b-15d157c6ebcb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":{"raw":"localhost:3000/paper/add","host":["localhost"],"port":"3000","path":["paper","add"]}},"response":[]},{"name":"delete paper","id":"8c5645fe-835a-4bb3-a63d-d3d17497dff3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":{"raw":"localhost:3000/paper/delete/:{id}","host":["localhost"],"port":"3000","path":["paper","delete",":{id}"],"variable":[{"key":"{id}","value":"","description":"Paper Id"}]}},"response":[]},{"name":"update paper","id":"2df93dd3-2c25-47a8-b711-34383f63016e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":{"raw":"localhost:3000/paper/update/:{id}","host":["localhost"],"port":"3000","path":["paper","update",":{id}"],"variable":[{"key":"{id}","value":"","description":"Paper Id"}]}},"response":[]}]} \ No newline at end of file diff --git a/api_collections/collection/9dc56da6-7565-4ad0-a5c3-b0e9eebb7461.json b/api_collections/collection/9dc56da6-7565-4ad0-a5c3-b0e9eebb7461.json new file mode 100644 index 0000000..8eb2a19 --- /dev/null +++ b/api_collections/collection/9dc56da6-7565-4ad0-a5c3-b0e9eebb7461.json @@ -0,0 +1 @@ +{"info":{"_postman_id":"9dc56da6-7565-4ad0-a5c3-b0e9eebb7461","name":"Group","schema":"https://schema.getpostman.com/json/collection/v2.1.0/collection.json"},"item":[{"name":"list groups","id":"9f8ead5e-13ce-48fe-b6d4-6e6802e93d6a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":{"raw":"localhost:3000/group/list","host":["localhost"],"port":"3000","path":["group","list"]}},"response":[]},{"name":"add group","id":"60739b2a-4819-4e0f-b640-96158ffc51b9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":{"raw":"localhost:3000/group/add","host":["localhost"],"port":"3000","path":["group","add"]}},"response":[]},{"name":"delete group","id":"233d73ee-b4a6-4de2-8017-06bfce5af5e4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":{"raw":"localhost:3000/group/delete/:{id}","host":["localhost"],"port":"3000","path":["group","delete",":{id}"],"variable":[{"key":"{id}","value":"","description":"Group Id"}]}},"response":[]},{"name":"update group","id":"88d13c49-b107-41b6-b564-7c901b9cf770","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":{"raw":"localhost:3000/group/update/:{id}","host":["localhost"],"port":"3000","path":["group","update",":{id}"],"variable":[{"key":"{id}","value":"","description":"Group Id"}]}},"response":[]}]} \ No newline at end of file diff --git a/api_collections/collection/a7837d0b-00d7-4709-9f91-d4d89be256b1.json b/api_collections/collection/a7837d0b-00d7-4709-9f91-d4d89be256b1.json new file mode 100644 index 0000000..7817fb3 --- /dev/null +++ b/api_collections/collection/a7837d0b-00d7-4709-9f91-d4d89be256b1.json @@ -0,0 +1 @@ +{"info":{"_postman_id":"a7837d0b-00d7-4709-9f91-d4d89be256b1","name":"Auth","schema":"https://schema.getpostman.com/json/collection/v2.1.0/collection.json"},"item":[{"name":"login","id":"f331dba3-9a46-429c-9be6-30c29254ebe4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":{"raw":"localhost:3000/auth","host":["localhost"],"port":"3000","path":["auth"]}},"response":[]},{"name":"validate user","id":"f0c5674d-f639-44be-977c-a63029fde92b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":{"raw":"localhost:3000/auth/validateUser","host":["localhost"],"port":"3000","path":["auth","validateUser"]}},"response":[]},{"name":"send OTP","id":"c3baee10-bc62-4599-9db7-301c57981c29","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":{"raw":"localhost:3000/auth/sendOTP","host":["localhost"],"port":"3000","path":["auth","sendOTP"]}},"response":[]},{"name":"reset password","id":"246d29bf-a5de-46b2-a0fd-1ea3ea6c12c4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":{"raw":"localhost:3000/resetPassword","host":["localhost"],"port":"3000","path":["resetPassword"]}},"response":[]}]} \ No newline at end of file diff --git a/api_collections/collection/a9c397c6-0e45-4e4d-9ab7-38193d65008e.json b/api_collections/collection/a9c397c6-0e45-4e4d-9ab7-38193d65008e.json new file mode 100644 index 0000000..f8908c7 --- /dev/null +++ b/api_collections/collection/a9c397c6-0e45-4e4d-9ab7-38193d65008e.json @@ -0,0 +1 @@ +{"info":{"_postman_id":"a9c397c6-0e45-4e4d-9ab7-38193d65008e","name":"Module","schema":"https://schema.getpostman.com/json/collection/v2.1.0/collection.json"},"item":[{"name":"list modules","id":"2e108941-1fc5-4604-a479-21e408271eb3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":{"raw":"localhost:3000/module/list","host":["localhost"],"port":"3000","path":["module","list"]}},"response":[]},{"name":"add module","id":"2ed6feda-939f-44a3-908d-5283dce0b0b5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":{"raw":"localhost:3000/module/add","host":["localhost"],"port":"3000","path":["module","add"]}},"response":[]},{"name":"delete module","id":"083ad0e3-f8e4-4f6c-93dc-dff208fbf178","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":{"raw":"localhost:3000/module/delete/:{id}","host":["localhost"],"port":"3000","path":["module","delete",":{id}"],"variable":[{"key":"{id}","value":"","description":"Module Id"}]}},"response":[]},{"name":"update module","id":"a544beec-2518-40d0-9e3a-a3c018ebc6fb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":{"raw":"localhost:3000/module/update/:{id}","host":["localhost"],"port":"3000","path":["module","update",":{id}"],"variable":[{"key":"{id}","value":"","description":"Module Id"}]}},"response":[]}]} \ No newline at end of file diff --git a/api_collections/collection/b112685f-00ae-4493-ba33-f4ead282236b.json b/api_collections/collection/b112685f-00ae-4493-ba33-f4ead282236b.json new file mode 100644 index 0000000..8bd20f4 --- /dev/null +++ b/api_collections/collection/b112685f-00ae-4493-ba33-f4ead282236b.json @@ -0,0 +1 @@ +{"info":{"_postman_id":"b112685f-00ae-4493-ba33-f4ead282236b","name":"Attendance","schema":"https://schema.getpostman.com/json/collection/v2.1.0/collection.json"},"item":[{"name":"list attendance","id":"b5a83618-a7dc-4d6e-88dd-871961cec7e6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":{"raw":"localhost:3000/attendance/list","host":["localhost"],"port":"3000","path":["attendance","list"]}},"response":[]},{"name":"add attendance","id":"a22b542d-2957-4aca-b5cc-65fb30234d47","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":{"raw":"localhost:3000/attendance/add","host":["localhost"],"port":"3000","path":["attendance","add"]}},"response":[]},{"name":"delete attendance","id":"a6d26f67-0c2b-439c-acaa-c474be8dc9f2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":{"raw":"localhost:3000/attendance/delete/:{id}","host":["localhost"],"port":"3000","path":["attendance","delete",":{id}"],"variable":[{"key":"{id}","value":"","description":"Attendance Id"}]}},"response":[]},{"name":"update attendance","id":"4216b45d-f9f9-4a19-9f37-c963b4fc122f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":{"raw":"localhost:3000/attendance/update/:{id}","host":["localhost"],"port":"3000","path":["attendance","update",":{id}"],"variable":[{"key":"{id}","value":"","description":"Attendance Id"}]}},"response":[]}]} \ No newline at end of file diff --git a/api_collections/collection/c894ed4d-56af-4346-8fff-d6286eb85e3b.json b/api_collections/collection/c894ed4d-56af-4346-8fff-d6286eb85e3b.json new file mode 100644 index 0000000..bd98b9f --- /dev/null +++ b/api_collections/collection/c894ed4d-56af-4346-8fff-d6286eb85e3b.json @@ -0,0 +1 @@ +{"info":{"_postman_id":"c894ed4d-56af-4346-8fff-d6286eb85e3b","name":"Notification","schema":"https://schema.getpostman.com/json/collection/v2.1.0/collection.json"},"item":[{"name":"list notifications","id":"c90d1fac-c8e7-4d00-a2f3-ba9477ebae39","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":{"raw":"localhost:3000/notification/list","host":["localhost"],"port":"3000","path":["notification","list"]}},"response":[]},{"name":"add notification","id":"d509290f-2130-4b30-bd7f-3b6d1a2f40d7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":{"raw":"localhost:3000/notification/add","host":["localhost"],"port":"3000","path":["notification","add"]}},"response":[]},{"name":"delete notification","id":"aba57aee-21f8-4958-928e-96b2e7932eec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":{"raw":"localhost:3000/notification/delete/:{id}","host":["localhost"],"port":"3000","path":["notification","delete",":{id}"],"variable":[{"key":"{id}","value":"","description":"Notification Id"}]}},"response":[]},{"name":"update notification","id":"b0318cfa-eeb9-47d4-8047-222333ceda55","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":{"raw":"localhost:3000/notification/update/:{id}","host":["localhost"],"port":"3000","path":["notification","update",":{id}"],"variable":[{"key":"{id}","value":"","description":"Notification Id"}]}},"response":[]}]} \ No newline at end of file diff --git a/api_collections/collection/cb8df51e-1014-4358-919c-3378ac431d62.json b/api_collections/collection/cb8df51e-1014-4358-919c-3378ac431d62.json new file mode 100644 index 0000000..af69027 --- /dev/null +++ b/api_collections/collection/cb8df51e-1014-4358-919c-3378ac431d62.json @@ -0,0 +1 @@ +{"info":{"_postman_id":"cb8df51e-1014-4358-919c-3378ac431d62","name":"Activity","schema":"https://schema.getpostman.com/json/collection/v2.1.0/collection.json"},"item":[{"name":"list activities","id":"4386be69-0b6a-4508-8b82-345e1b6a4416","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":{"raw":"localhost:3000/activity/list","host":["localhost"],"port":"3000","path":["activity","list"]}},"response":[]},{"name":"add activity","id":"753e07b9-eae0-4369-a323-7a63b8da562e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":{"raw":"localhost:3000/activity/add","host":["localhost"],"port":"3000","path":["activity","add"]}},"response":[]},{"name":"delete activity","id":"8be967a1-a25b-49d4-887b-5430e8c9269f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":{"raw":"localhost:3000/activity/delete/:{id}","host":["localhost"],"port":"3000","path":["activity","delete",":{id}"],"variable":[{"key":"{id}","value":"","description":"Activity Id"}]}},"response":[]},{"name":"update activity","id":"e7eca21f-d642-44d8-99d7-218da58df450","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":{"raw":"localhost:3000/activity/update/:{id}","host":["localhost"],"port":"3000","path":["activity","update",":{id}"],"variable":[{"id":"7801dafb-93d5-4a06-9ad3-c45af4db6d7b","key":"{id}","value":"","description":"Activity Id"}]}},"response":[]}]} \ No newline at end of file diff --git a/api_collections/collection/d528bf3a-eb58-48ec-8a1c-c79c62d673e2.json b/api_collections/collection/d528bf3a-eb58-48ec-8a1c-c79c62d673e2.json new file mode 100644 index 0000000..e85bd84 --- /dev/null +++ b/api_collections/collection/d528bf3a-eb58-48ec-8a1c-c79c62d673e2.json @@ -0,0 +1 @@ +{"info":{"_postman_id":"d528bf3a-eb58-48ec-8a1c-c79c62d673e2","name":"Task Manager","schema":"https://schema.getpostman.com/json/collection/v2.1.0/collection.json"},"item":[{"name":"Get all tasks","id":"498dd549-7945-43a5-93ae-7413cf8508a6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\n \"name\": \"testing tasks\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{URL}}/tasks","host":["{{URL}}"],"path":["tasks"]}},"response":[]},{"name":"Create task","id":"fac4f81a-89d5-47c2-82c4-8696ee51b939","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":[{"key":"token","value":"{{accessToken}}","type":"string"}]},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n \"name\": \"bleh\",\n \"completed\": true\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{URL}}/tasks","host":["{{URL}}"],"path":["tasks"]}},"response":[]},{"name":"Get single task","id":"9a0585c1-913d-42da-a141-68717d8260aa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\n \"id\": \"64fc334901f0be01bc4d73bc\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{URL}}/tasks/64fc336001f0be01bc4d73c0","host":["{{URL}}"],"path":["tasks","64fc336001f0be01bc4d73c0"]}},"response":[]},{"name":"Delete task","id":"d3cb2ee4-f6af-456d-a2ba-bb4a5d45e75f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{\n \"name\": \"bleh\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{URL}}/tasks/hello","host":["{{URL}}"],"path":["tasks","hello"]}},"response":[]},{"name":"Update task","id":"80dc1e33-3faa-4ca7-b7c3-acd1d3e1a471","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n \"name\": \"bleh\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{URL}}/tasks/123","host":["{{URL}}"],"path":["tasks","123"]}},"response":[]}]} \ No newline at end of file diff --git a/api_collections/collection/d64c14a5-362a-41e9-9fa1-5f7d93ab1c02.json b/api_collections/collection/d64c14a5-362a-41e9-9fa1-5f7d93ab1c02.json new file mode 100644 index 0000000..f34af40 --- /dev/null +++ b/api_collections/collection/d64c14a5-362a-41e9-9fa1-5f7d93ab1c02.json @@ -0,0 +1 @@ +{"info":{"_postman_id":"d64c14a5-362a-41e9-9fa1-5f7d93ab1c02","name":"Practical","schema":"https://schema.getpostman.com/json/collection/v2.1.0/collection.json"},"item":[{"name":"list practicals","id":"87eae044-77c1-4ff9-8481-f8c16f4f9c3b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":{"raw":"localhost:3000/practical/list","host":["localhost"],"port":"3000","path":["practical","list"]}},"response":[]},{"name":"create practical","id":"8fa89fa6-3913-4997-ab78-2ad1a6182e11","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":{"raw":"localhost:3000/practical/create","host":["localhost"],"port":"3000","path":["practical","create"]}},"response":[]},{"name":"delete practical","id":"5231818b-7bdd-4807-b46d-290699fd0419","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":{"raw":"localhost:3000/practical/delete/:{id}","host":["localhost"],"port":"3000","path":["practical","delete",":{id}"],"variable":[{"key":"{id}","value":"","description":"Practical Id"}]}},"response":[]},{"name":"update practical","id":"2f115ed2-5170-43c8-a91d-f0a883ada9bb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":{"raw":"localhost:3000/practical/update/:{id}","host":["localhost"],"port":"3000","path":["practical","update",":{id}"],"variable":[{"key":"{id}","value":"","description":"Practical Id"}]}},"response":[]}]} \ No newline at end of file diff --git a/api_collections/collection/deaa0fc0-e06f-4427-8051-b2f3550a8aa0.json b/api_collections/collection/deaa0fc0-e06f-4427-8051-b2f3550a8aa0.json new file mode 100644 index 0000000..c06d437 --- /dev/null +++ b/api_collections/collection/deaa0fc0-e06f-4427-8051-b2f3550a8aa0.json @@ -0,0 +1 @@ +{"info":{"_postman_id":"deaa0fc0-e06f-4427-8051-b2f3550a8aa0","name":"Department","schema":"https://schema.getpostman.com/json/collection/v2.1.0/collection.json"},"item":[{"name":"list departments","id":"9078d428-5585-4b43-99e7-655682d3f0a8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":{"raw":"localhost:3000/department/list","host":["localhost"],"port":"3000","path":["department","list"]}},"response":[]},{"name":"create department","id":"445186ca-6c40-4756-a659-1c8f4e1310d3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":{"raw":"localhost:3000/department/create","host":["localhost"],"port":"3000","path":["department","create"]}},"response":[]},{"name":"delete department","id":"0073023c-22e8-4805-84a4-61d9cffc2259","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":{"raw":"localhost:3000/department/delete/:{id}","host":["localhost"],"port":"3000","path":["department","delete",":{id}"],"variable":[{"key":"{id}","value":"","description":"Department Id"}]}},"response":[]},{"name":"update department","id":"249427f7-3f6b-4440-863a-e11d223dfa9d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":{"raw":"localhost:3000/department/update/:{id}","host":["localhost"],"port":"3000","path":["department","update",":{id}"],"variable":[{"key":"{id}","value":"","description":"Department Id"}]}},"response":[]}]} \ No newline at end of file diff --git a/api_collections/collection/ed82edec-9c7c-4fce-a00b-e531288e0c80.json b/api_collections/collection/ed82edec-9c7c-4fce-a00b-e531288e0c80.json new file mode 100644 index 0000000..9783683 --- /dev/null +++ b/api_collections/collection/ed82edec-9c7c-4fce-a00b-e531288e0c80.json @@ -0,0 +1 @@ +{"info":{"_postman_id":"ed82edec-9c7c-4fce-a00b-e531288e0c80","name":"Timetable","schema":"https://schema.getpostman.com/json/collection/v2.1.0/collection.json"},"item":[{"name":"list timetables","id":"9db04a5b-832a-42f7-8a0f-746f36765391","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":{"raw":"localhost:3000/timetable/list","host":["localhost"],"port":"3000","path":["timetable","list"]}},"response":[]},{"name":"add timetable","id":"4316b292-b7b7-4e5f-baca-7706e7836aca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":{"raw":"localhost:3000/timetable/add","host":["localhost"],"port":"3000","path":["timetable","add"]}},"response":[]},{"name":"delete timetable","id":"2c9df7f8-a26f-49db-b9a4-67604a614b5b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":{"raw":"localhost:3000/timetable/delete/:{id}","host":["localhost"],"port":"3000","path":["timetable","delete",":{id}"],"variable":[{"key":"{id}","value":"","description":"Timetable Id"}]}},"response":[]},{"name":"update timetable","id":"d419415e-822a-485f-b64e-b900d37bbfda","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":{"raw":"localhost:3000/timetable/update/:{id}","host":["localhost"],"port":"3000","path":["timetable","update",":{id}"],"variable":[{"key":"{id}","value":"","description":"Timetable Id"}]}},"response":[]}]} \ No newline at end of file diff --git a/api_collections/collection/f291aff3-514f-42be-a9bb-a9159018ba59.json b/api_collections/collection/f291aff3-514f-42be-a9bb-a9159018ba59.json new file mode 100644 index 0000000..a1c6b91 --- /dev/null +++ b/api_collections/collection/f291aff3-514f-42be-a9bb-a9159018ba59.json @@ -0,0 +1 @@ +{"info":{"_postman_id":"f291aff3-514f-42be-a9bb-a9159018ba59","name":"Semester","schema":"https://schema.getpostman.com/json/collection/v2.1.0/collection.json"},"item":[{"name":"list semesters","id":"adc75592-2a2a-4f5b-b4c1-4d7d67a2c1c7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":{"raw":"localhost:3000/semester/list","host":["localhost"],"port":"3000","path":["semester","list"]}},"response":[]},{"name":"add semester","id":"232e3c4e-b15a-4d4d-a9f9-98bedcc638f9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":{"raw":"localhost:3000/semester/add","host":["localhost"],"port":"3000","path":["semester","add"]}},"response":[]},{"name":"delete semester","id":"3dca4514-7406-4b91-a026-7f59a1bac5d3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":{"raw":"localhost:3000/semester/delete/:{id}","host":["localhost"],"port":"3000","path":["semester","delete",":{id}"],"variable":[{"key":"{id}","value":"","description":"Semester Id"}]}},"response":[]},{"name":"update semester","id":"ce70068a-7380-4642-bc31-0d09b1547a39","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":{"raw":"localhost:3000/semester/update/:{id}","host":["localhost"],"port":"3000","path":["semester","update",":{id}"],"variable":[{"key":"{id}","value":"","description":"Semester Id"}]}},"response":[]}]} \ No newline at end of file diff --git a/api_collections/collection/f37302e2-693b-4fa6-b926-1cf0e5032e6d.json b/api_collections/collection/f37302e2-693b-4fa6-b926-1cf0e5032e6d.json new file mode 100644 index 0000000..c147ccf --- /dev/null +++ b/api_collections/collection/f37302e2-693b-4fa6-b926-1cf0e5032e6d.json @@ -0,0 +1 @@ +{"info":{"_postman_id":"f37302e2-693b-4fa6-b926-1cf0e5032e6d","name":"Coursework","schema":"https://schema.getpostman.com/json/collection/v2.1.0/collection.json"},"item":[{"name":"list courseworks","id":"e98156ec-abb8-449f-84c9-e697ddee7bb8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":{"raw":"localhost:3000/coursework/list","host":["localhost"],"port":"3000","path":["coursework","list"]}},"response":[]},{"name":"add coursework","id":"ba2fbb14-eb88-4a46-820e-75bf1113b13c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":{"raw":"localhost:3000/coursework/add","host":["localhost"],"port":"3000","path":["coursework","add"]}},"response":[]},{"name":"delete coursework","id":"d958b471-7401-4971-8c61-831a4f1119b8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":{"raw":"localhost:3000/coursework/delete/:{id}","host":["localhost"],"port":"3000","path":["coursework","delete",":{id}"],"variable":[{"key":"{id}","value":"","description":"Coursework Id"}]}},"response":[]},{"name":"update coursework","id":"ffd63b5b-c6db-48c1-ac9d-4d6d8e57055b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":{"raw":"localhost:3000/coursework/update/:{id}","host":["localhost"],"port":"3000","path":["coursework","update",":{id}"],"variable":[{"key":"{id}","value":"","description":"Coursework Id"}]}},"response":[]}]} \ No newline at end of file diff --git a/api_collections/collection/f54f8502-855b-4e1f-8ad7-8a4d3e33ce2c.json b/api_collections/collection/f54f8502-855b-4e1f-8ad7-8a4d3e33ce2c.json new file mode 100644 index 0000000..b50080e --- /dev/null +++ b/api_collections/collection/f54f8502-855b-4e1f-8ad7-8a4d3e33ce2c.json @@ -0,0 +1 @@ +{"info":{"_postman_id":"f54f8502-855b-4e1f-8ad7-8a4d3e33ce2c","name":"Topic","schema":"https://schema.getpostman.com/json/collection/v2.1.0/collection.json"},"item":[{"name":"list topics","id":"37e9e204-7a21-4710-a3cf-7a9ff20bfbff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":{"raw":"localhost:3000/topic/list","host":["localhost"],"port":"3000","path":["topic","list"]}},"response":[]},{"name":"add topic","id":"f5da6def-c092-48a3-968d-0238d52ec0de","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":{"raw":"localhost:3000/topic/add","host":["localhost"],"port":"3000","path":["topic","add"]}},"response":[]},{"name":"delete topic","id":"9453f1e6-0796-47f0-a854-a2d9f159b062","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":{"raw":"localhost:3000/topic/delete/:{id}","host":["localhost"],"port":"3000","path":["topic","delete",":{id}"],"variable":[{"key":"{id}","value":"","description":"Topic Id"}]}},"response":[]},{"name":"update topic","id":"fb498899-1e59-456c-a9bf-9273d7e6f57e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":{"raw":"localhost:3000/topic/update/:{id}","host":["localhost"],"port":"3000","path":["topic","update",":{id}"],"variable":[{"key":"{id}","value":"","description":"Topic Id"}]}},"response":[]}]} \ No newline at end of file diff --git a/api_collections/collection/fda43fc4-6ae2-4d95-88ff-31f5e2ceb0ba.json b/api_collections/collection/fda43fc4-6ae2-4d95-88ff-31f5e2ceb0ba.json new file mode 100644 index 0000000..547f518 --- /dev/null +++ b/api_collections/collection/fda43fc4-6ae2-4d95-88ff-31f5e2ceb0ba.json @@ -0,0 +1 @@ +{"info":{"_postman_id":"fda43fc4-6ae2-4d95-88ff-31f5e2ceb0ba","name":"Tutorial","schema":"https://schema.getpostman.com/json/collection/v2.1.0/collection.json"},"item":[{"name":"list tutorials","id":"4563f532-a947-430b-b4ef-6b322ec8f33e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":{"raw":"localhost:3000/tutorial/list","host":["localhost"],"port":"3000","path":["tutorial","list"]}},"response":[]},{"name":"add tutorial","id":"a64bbcbf-0372-425c-8e92-7ceeb7203820","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":{"raw":"localhost:3000/tutorial/add","host":["localhost"],"port":"3000","path":["tutorial","add"]}},"response":[]},{"name":"delete tutorial","id":"176c0d92-0e69-4632-a646-83c82156300a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":{"raw":"localhost:3000/tutorial/delete/:{id}","host":["localhost"],"port":"3000","path":["tutorial","delete",":{id}"],"variable":[{"key":"{id}","value":"","description":"Tutorial Id"}]}},"response":[]},{"name":"update tutorial","id":"8e912540-119e-45e7-9c9f-eae5e4ea5cf8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":{"raw":"localhost:3000/tutorial/update/:{id}","host":["localhost"],"port":"3000","path":["tutorial","update",":{id}"],"variable":[{"key":"{id}","value":"","description":"Tutorial Id"}]}},"response":[]}]} \ No newline at end of file