{"info":{"_postman_id":"6f0138f7-265d-4126-bb34-a345f5ac3613","name":"Final Project","description":"<html><head></head><body><p>Final Project for Application Development: Backend</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"52413032","collectionId":"6f0138f7-265d-4126-bb34-a345f5ac3613","publishedId":"2sBXitDTFt","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2026-04-12T22:41:14.000Z"},"item":[{"name":"Pets","item":[{"name":"Get pets","id":"8e72a2bc-4e25-4410-87d6-596221e3a746","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"urlObject":{"query":[],"variable":[]},"url":""},"response":[{"id":"5d09c6a2-e900-4294-86a6-c87c8ad72252","name":"Get pets","originalRequest":{"method":"GET","header":[],"url":"localhost:3000/api/pets"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"X-Powered-By","value":"Express"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"631"},{"key":"ETag","value":"W/\"277-pznnnXLF3E1gXk2srfBAc1i4q+E\""},{"key":"Date","value":"Sun, 12 Apr 2026 22:30:34 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 1,\n        \"ownerName\": \"Bob\",\n        \"name\": \"Fluffy\",\n        \"species\": \"dog\",\n        \"breed\": \"lab\",\n        \"gender\": \"male\",\n        \"age\": \"6 years\",\n        \"color\": \"black\",\n        \"createdAt\": \"2026-04-12T21:26:11.586Z\",\n        \"updatedAt\": \"2026-04-12T21:26:11.586Z\"\n    },\n    {\n        \"id\": 2,\n        \"ownerName\": \"Jon Arbuckle\",\n        \"name\": \"Garfield\",\n        \"species\": \"cat\",\n        \"breed\": \"dom shorthair\",\n        \"gender\": \"male\",\n        \"age\": \"47 years\",\n        \"color\": \"orange\",\n        \"createdAt\": \"2026-04-12T21:26:11.586Z\",\n        \"updatedAt\": \"2026-04-12T21:26:11.586Z\"\n    },\n    {\n        \"id\": 3,\n        \"ownerName\": \"Jon Arbuckle\",\n        \"name\": \"Odie\",\n        \"species\": \"dog\",\n        \"breed\": \"mutt\",\n        \"gender\": \"male\",\n        \"age\": \"47 years\",\n        \"color\": \"yellow\",\n        \"createdAt\": \"2026-04-12T21:26:11.586Z\",\n        \"updatedAt\": \"2026-04-12T21:26:11.586Z\"\n    }\n]"}],"_postman_id":"8e72a2bc-4e25-4410-87d6-596221e3a746"},{"name":"Get one pet","id":"ad1850f6-71ba-49d1-b802-b4748c52e4e1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"urlObject":{"query":[],"variable":[]},"url":""},"response":[{"id":"05d73dc1-8d3e-4ad4-a9d8-c5c1fad258c9","name":"Get one pet","originalRequest":{"method":"GET","header":[],"url":"localhost:3000/api/pets/1"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"X-Powered-By","value":"Express"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"264"},{"key":"ETag","value":"W/\"108-1FKui6hUHGmCLnxR3YeuZTqDoG8\""},{"key":"Date","value":"Sun, 12 Apr 2026 21:51:33 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 1,\n    \"ownerName\": \"Bob\",\n    \"name\": \"Fluffy\",\n    \"species\": \"dog\",\n    \"breed\": \"lab\",\n    \"gender\": \"male\",\n    \"age\": \"6 years\",\n    \"color\": \"black\",\n    \"createdAt\": \"2026-04-12T21:26:11.586Z\",\n    \"updatedAt\": \"2026-04-12T21:26:11.586Z\",\n    \"Visits\": [\n        {\n            \"id\": 1,\n            \"visitDate\": null,\n            \"initialReason\": \"Cut on paw\"\n        }\n    ]\n}"}],"_postman_id":"ad1850f6-71ba-49d1-b802-b4748c52e4e1"},{"name":"Create pet","id":"b46b1546-d751-410f-90c0-614d83f37f81","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"  {\r\n    \"name\": \"Grilled Cheese\",\r\n    \"description\": \"Melted cheese between two pieces of toasted bread.\",\r\n    \"price\": 5.00,\r\n    \"category\": \"entree\",\r\n    \"ingredients\": [\"bread\", \"cheese\", \"butter\"],\r\n    \"available\": true\r\n  }","options":{"raw":{"language":"json"}}},"urlObject":{"query":[],"variable":[]},"url":""},"response":[{"id":"03b105d5-c62f-4441-9aba-4872e75584f2","name":"Create pet","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"  {\r\n    \"ownerName\": \"Larry\",\r\n    \"name\": \"Grilled Cheese\",\r\n    \"species\": \"cat\",\r\n    \"breed\": \"dom longhair\",\r\n    \"gender\": \"female\",\r\n    \"age\": \"4 years\",\r\n    \"color\": \"brown tabby\"\r\n  }","options":{"raw":{"language":"json"}}},"url":"localhost:3000/api/pets"},"status":"Created","code":201,"_postman_previewlanguage":null,"header":[{"key":"X-Powered-By","value":"Express"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"225"},{"key":"ETag","value":"W/\"e1-XuptSwlyDWNJi7mT8dX/eHHvixI\""},{"key":"Date","value":"Sun, 12 Apr 2026 21:18:39 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 4,\n    \"ownerName\": \"Larry\",\n    \"name\": \"Grilled Cheese\",\n    \"species\": \"cat\",\n    \"breed\": \"dom longhair\",\n    \"gender\": \"female\",\n    \"age\": \"4 years\",\n    \"color\": \"brown tabby\",\n    \"updatedAt\": \"2026-04-12T21:18:39.680Z\",\n    \"createdAt\": \"2026-04-12T21:18:39.680Z\"\n}"}],"_postman_id":"b46b1546-d751-410f-90c0-614d83f37f81"},{"name":"Update pet","id":"2b286497-92b6-40c4-bb85-85d8abe3e22e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"urlObject":{"query":[],"variable":[]},"url":""},"response":[{"id":"8e1a6366-b2ca-422a-bbf3-dbf0a4ee51a7","name":"Update pet","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"  {\r\n    \"ownerName\": \"Larry McGeorge\",\r\n    \"name\": \"Grilled Cheese\",\r\n    \"species\": \"cat\",\r\n    \"breed\": \"dom longhair\",\r\n    \"gender\": \"female\",\r\n    \"age\": \"4 years\",\r\n    \"color\": \"brown tabby\"\r\n  }","options":{"raw":{"language":"json"}}},"url":"localhost:3000/api/pets/4"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"X-Powered-By","value":"Express"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"234"},{"key":"ETag","value":"W/\"ea-MQ4tH7xYOEQhscK7JcrSUB3U8mU\""},{"key":"Date","value":"Sun, 12 Apr 2026 21:18:48 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 4,\n    \"ownerName\": \"Larry McGeorge\",\n    \"name\": \"Grilled Cheese\",\n    \"species\": \"cat\",\n    \"breed\": \"dom longhair\",\n    \"gender\": \"female\",\n    \"age\": \"4 years\",\n    \"color\": \"brown tabby\",\n    \"createdAt\": \"2026-04-12T21:18:39.680Z\",\n    \"updatedAt\": \"2026-04-12T21:18:48.700Z\"\n}"}],"_postman_id":"2b286497-92b6-40c4-bb85-85d8abe3e22e"},{"name":"Delete pet","id":"bd3133f6-e39b-4f07-ac7c-afe3a7ccadff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"urlObject":{"query":[],"variable":[]},"url":""},"response":[{"id":"ea254aea-553b-489c-8228-4425d2f65219","name":"Delete pet","originalRequest":{"method":"DELETE","header":[],"url":"localhost:3000/api/pets/4"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"X-Powered-By","value":"Express"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"38"},{"key":"ETag","value":"W/\"26-Vkcg7/6k/1s8Rezayou1sdKJdL4\""},{"key":"Date","value":"Sun, 12 Apr 2026 21:18:56 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Pet deleted successfully\"\n}"}],"_postman_id":"bd3133f6-e39b-4f07-ac7c-afe3a7ccadff"}],"id":"e873762d-38fd-45e6-8121-d9cf409262b8","description":"<p>Pets API</p>\n","_postman_id":"e873762d-38fd-45e6-8121-d9cf409262b8"},{"name":"Visits","item":[{"name":"Get visits","id":"051be3e0-244c-490e-81b5-dec15d8bd83f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"localhost:3000/api/visits","urlObject":{"port":"3000","path":["api","visits"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"aff526cf-555a-4619-a86d-ad1790002bba","name":"Get visits","originalRequest":{"method":"GET","header":[],"url":"localhost:3000/api/visits"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"X-Powered-By","value":"Express"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"883"},{"key":"ETag","value":"W/\"373-0jL1sNxaGMSQm9/Y5/Xqjllr4rM\""},{"key":"Date","value":"Sun, 12 Apr 2026 22:00:49 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 1,\n        \"visitDate\": null,\n        \"initialReason\": \"Cut on paw\",\n        \"symptoms\": \"Open wound on front left paw\",\n        \"diagnosis\": \"Cut\",\n        \"priority\": \"low\",\n        \"createdAt\": \"2026-04-12T21:26:11.609Z\",\n        \"updatedAt\": \"2026-04-12T21:26:11.609Z\",\n        \"petsId\": 1\n    },\n    {\n        \"id\": 2,\n        \"visitDate\": null,\n        \"initialReason\": \"Cat sick\",\n        \"symptoms\": \"Vomiting\",\n        \"diagnosis\": \"Cat ate inappropriate food\",\n        \"priority\": \"medium\",\n        \"createdAt\": \"2026-04-12T21:26:11.609Z\",\n        \"updatedAt\": \"2026-04-12T21:26:11.609Z\",\n        \"petsId\": 2\n    },\n    {\n        \"id\": 3,\n        \"visitDate\": null,\n        \"initialReason\": \"Limping\",\n        \"symptoms\": \"Limping, pain\",\n        \"diagnosis\": \"Bruised hind quarters\",\n        \"priority\": \"low\",\n        \"createdAt\": \"2026-04-12T21:26:11.609Z\",\n        \"updatedAt\": \"2026-04-12T21:26:11.609Z\",\n        \"petsId\": 3\n    },\n    {\n        \"id\": 7,\n        \"visitDate\": null,\n        \"initialReason\": \"Annual vaccines and exam\",\n        \"symptoms\": \"None\",\n        \"diagnosis\": \"Healthy\",\n        \"priority\": \"low\",\n        \"createdAt\": \"2026-04-12T21:59:40.495Z\",\n        \"updatedAt\": \"2026-04-12T22:00:36.720Z\",\n        \"petsId\": 3\n    }\n]"}],"_postman_id":"051be3e0-244c-490e-81b5-dec15d8bd83f"},{"name":"Get one visit","id":"0a1ac52f-139b-4c11-95bd-9be73ffc972e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"localhost:3000/api/visits/1","urlObject":{"port":"3000","path":["api","visits","1"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"2fcfd8af-deaa-4600-8544-55868c58b842","name":"Get one visit","originalRequest":{"method":"GET","header":[],"url":"localhost:3000/api/visits/7"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"X-Powered-By","value":"Express"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"277"},{"key":"ETag","value":"W/\"115-yvOkyk8kMMioaVkqpIv7Thds6Yc\""},{"key":"Date","value":"Sun, 12 Apr 2026 22:00:02 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 7,\n    \"visitDate\": null,\n    \"initialReason\": \"Annual vaccines\",\n    \"symptoms\": \"None\",\n    \"diagnosis\": \"Healthy\",\n    \"priority\": \"low\",\n    \"createdAt\": \"2026-04-12T21:59:40.495Z\",\n    \"updatedAt\": \"2026-04-12T21:59:40.495Z\",\n    \"petsId\": 3,\n    \"Pet\": {\n        \"id\": 3,\n        \"ownerName\": \"Jon Arbuckle\",\n        \"name\": \"Odie\"\n    },\n    \"Treatments\": []\n}"}],"_postman_id":"0a1ac52f-139b-4c11-95bd-9be73ffc972e"},{"name":"Create visit","id":"0f014907-86e7-417b-8ce2-d1dd81a80915","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"localhost:3000/api/visits","urlObject":{"port":"3000","path":["api","visits"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"02c6e599-1ed3-4b4f-87d1-a9b08378f312","name":"Create visit","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"  {\r\n    \"visitDate\": \"\",\r\n    \"initialReason\": \"Annual vaccines\",\r\n    \"symptoms\": \"None\",\r\n    \"diagnosis\": \"Healthy\",\r\n    \"priority\": \"low\",\r\n    \"petsId\": 3\r\n  }","options":{"raw":{"language":"json"}}},"url":"localhost:3000/api/visits"},"status":"Created","code":201,"_postman_previewlanguage":null,"header":[{"key":"X-Powered-By","value":"Express"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"203"},{"key":"ETag","value":"W/\"cb-xfnf006ldbD4XWAxLVo45GdS3RQ\""},{"key":"Date","value":"Sun, 12 Apr 2026 21:59:40 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 7,\n    \"visitDate\": \"\",\n    \"initialReason\": \"Annual vaccines\",\n    \"symptoms\": \"None\",\n    \"diagnosis\": \"Healthy\",\n    \"priority\": \"low\",\n    \"petsId\": 3,\n    \"updatedAt\": \"2026-04-12T21:59:40.495Z\",\n    \"createdAt\": \"2026-04-12T21:59:40.495Z\"\n}"}],"_postman_id":"0f014907-86e7-417b-8ce2-d1dd81a80915"},{"name":"Update visit","id":"92f54ba3-452d-4b4c-84b2-54a9b3cebb90","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"  {\r\n    \"visitDate\": \"\",\r\n    \"initialReason\": \"Annual vaccines and exam\",\r\n    \"symptoms\": \"None\",\r\n    \"diagnosis\": \"Healthy\",\r\n    \"priority\": \"low\"\r\n  }","options":{"raw":{"language":"json"}}},"url":"localhost:3000/api/visits/4","urlObject":{"port":"3000","path":["api","visits","4"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"b448dafb-8741-4fce-ba38-d9ecfd7b9391","name":"Update visit","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"  {\r\n    \"visitDate\": \"\",\r\n    \"initialReason\": \"Annual vaccines and exam\",\r\n    \"symptoms\": \"None\",\r\n    \"diagnosis\": \"Healthy\",\r\n    \"priority\": \"low\",\r\n    \"petsId\": 3\r\n  }","options":{"raw":{"language":"json"}}},"url":"localhost:3000/api/visits/7"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"X-Powered-By","value":"Express"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"214"},{"key":"ETag","value":"W/\"d6-E5gOyS02Gx4Wy7OQpG81L0ww39I\""},{"key":"Date","value":"Sun, 12 Apr 2026 22:00:36 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 7,\n    \"visitDate\": null,\n    \"initialReason\": \"Annual vaccines and exam\",\n    \"symptoms\": \"None\",\n    \"diagnosis\": \"Healthy\",\n    \"priority\": \"low\",\n    \"createdAt\": \"2026-04-12T21:59:40.495Z\",\n    \"updatedAt\": \"2026-04-12T22:00:36.720Z\",\n    \"petsId\": 3\n}"}],"_postman_id":"92f54ba3-452d-4b4c-84b2-54a9b3cebb90"},{"name":"Delete visit","id":"1b8f0bce-3f70-4491-89aa-2bc5b29a6585","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"localhost:3000/api/visits/4","urlObject":{"port":"3000","path":["api","visits","4"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"49b03d8f-4ad9-47c2-894d-8d91655edf47","name":"Delete visit","originalRequest":{"method":"DELETE","header":[],"url":"localhost:3000/api/visits/7"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"X-Powered-By","value":"Express"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"40"},{"key":"ETag","value":"W/\"28-oOW2ZPTUq5R1CI/JnFLsWGPtAKw\""},{"key":"Date","value":"Sun, 12 Apr 2026 22:00:59 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Visit deleted successfully\"\n}"}],"_postman_id":"1b8f0bce-3f70-4491-89aa-2bc5b29a6585"}],"id":"6dace514-a6fc-4bf5-9078-eb36482c85e7","description":"<p>Visits API</p>\n","_postman_id":"6dace514-a6fc-4bf5-9078-eb36482c85e7"},{"name":"Treatments","item":[{"name":"Get treatments","id":"e4c02120-ba76-4577-bf75-e708787c6034","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"localhost:3000/api/treatments","urlObject":{"port":"3000","path":["api","treatments"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"df22599a-0ede-4c61-8b5d-e42609d44a34","name":"Get treatments","originalRequest":{"method":"GET","header":[],"url":"localhost:3000/api/treatments"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"X-Powered-By","value":"Express"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"900"},{"key":"ETag","value":"W/\"384-a/uusAlxE/MiodglMlbDiIuGOoM\""},{"key":"Date","value":"Sun, 12 Apr 2026 22:15:59 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 1,\n        \"issue\": \"Cut on left front paw\",\n        \"description\": \"Examined wound, cleaned wound, applied ointment, applied bandage\",\n        \"instructions\": \"Apply ointment every 24 hours for 2 weeks. Keep bandaged if possible.\",\n        \"createdAt\": \"2026-04-12T21:26:11.628Z\",\n        \"updatedAt\": \"2026-04-12T21:26:11.628Z\",\n        \"visitsId\": 1\n    },\n    {\n        \"id\": 2,\n        \"issue\": \"Ate lasagna\",\n        \"description\": \"Preliminary examination, xrays, anti-nausea medication, observation\",\n        \"instructions\": \"Give anti-nausea medication orally every 12 hours for 1 week. Advised owner to feed cat appropriate diet.\",\n        \"createdAt\": \"2026-04-12T21:26:11.628Z\",\n        \"updatedAt\": \"2026-04-12T21:26:11.628Z\",\n        \"visitsId\": 2\n    },\n    {\n        \"id\": 3,\n        \"issue\": \"Bruied hind quarters\",\n        \"description\": \"Examined hind quarters and legs, xrays\",\n        \"instructions\": \"Give pain medication as needed, keep off tall objects for 4 weeks.\",\n        \"createdAt\": \"2026-04-12T21:26:11.628Z\",\n        \"updatedAt\": \"2026-04-12T21:26:11.628Z\",\n        \"visitsId\": 3\n    }\n]"}],"_postman_id":"e4c02120-ba76-4577-bf75-e708787c6034"},{"name":"Get one treatment","id":"0e854f24-27cb-47b7-aff5-746fd0ca0b2e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"localhost:3000/api/treatments/1","urlObject":{"port":"3000","path":["api","treatments","1"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"f922058e-58fd-4ff1-9dcd-ea6f42886a89","name":"Get one treatment","originalRequest":{"method":"GET","header":[],"url":"localhost:3000/api/treatments/1"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"X-Powered-By","value":"Express"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"362"},{"key":"ETag","value":"W/\"16a-dJugJN/eacbbp24w/Tui6Nn3Orw\""},{"key":"Date","value":"Sun, 12 Apr 2026 22:26:11 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 1,\n    \"issue\": \"Cut on left front paw\",\n    \"description\": \"Examined wound, cleaned wound, applied ointment, applied bandage\",\n    \"instructions\": \"Apply ointment every 24 hours for 2 weeks. Keep bandaged if possible.\",\n    \"createdAt\": \"2026-04-12T21:26:11.628Z\",\n    \"updatedAt\": \"2026-04-12T21:26:11.628Z\",\n    \"visitsId\": 1,\n    \"Visit\": {\n        \"id\": 1,\n        \"visitDate\": null,\n        \"initialReason\": \"Cut on paw\"\n    }\n}"}],"_postman_id":"0e854f24-27cb-47b7-aff5-746fd0ca0b2e"},{"name":"Create treatment","id":"a20a5346-dfaa-47be-85c0-7673fc97478b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"  {\r\n    \"issue\": \"sore leg from vaccines\",\r\n    \"description\": \"Administered vaccines in right front leg, will be sore and pet will be tired\",\r\n    \"instructions\": \"Monitor for any fever or abnormal lack of energy\"\r\n  }","options":{"raw":{"language":"json"}}},"url":"localhost:3000/api/treatments","urlObject":{"port":"3000","path":["api","treatments"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"1a9bce31-864b-4734-a097-d0da91fdc325","name":"Create treatment","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"  {\r\n    \"issue\": \"sore leg from vaccines\",\r\n    \"description\": \"Administered vaccines in right front leg, will be sore and pet will be tired\",\r\n    \"instructions\": \"Monitor for any fever or abnormal lack of energy\",\r\n    \"visitsId\": 3\r\n  }","options":{"raw":{"language":"json"}}},"url":"localhost:3000/api/treatments"},"status":"Created","code":201,"_postman_previewlanguage":null,"header":[{"key":"X-Powered-By","value":"Express"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"291"},{"key":"ETag","value":"W/\"123-F17EM8SY5S1fDbhaE24ATwqwexU\""},{"key":"Date","value":"Sun, 12 Apr 2026 22:18:38 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 4,\n    \"issue\": \"sore leg from vaccines\",\n    \"description\": \"Administered vaccines in right front leg, will be sore and pet will be tired\",\n    \"instructions\": \"Monitor for any fever or abnormal lack of energy\",\n    \"visitsId\": 3,\n    \"updatedAt\": \"2026-04-12T22:18:38.725Z\",\n    \"createdAt\": \"2026-04-12T22:18:38.725Z\"\n}"}],"_postman_id":"a20a5346-dfaa-47be-85c0-7673fc97478b"},{"name":"Update treatment","id":"843253e8-d683-4fbc-869b-412a66d3305d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"  {\r\n    \"issue\": \"sore leg from vaccines\",\r\n    \"description\": \"Administered vaccines in right front leg, will be sore and pet will be tired\",\r\n    \"instructions\": \"Monitor for any fever or abnormal lack of energy, call if you notice anything unusual\"\r\n  }","options":{"raw":{"language":"json"}}},"url":"localhost:3000/api/treatments/4","urlObject":{"port":"3000","path":["api","treatments","4"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"a0f7c29f-1e41-4b49-b47e-786b19aca102","name":"Update treatment","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"  {\r\n    \"issue\": \"sore leg from vaccines\",\r\n    \"description\": \"Administered vaccines in right front leg, will be sore and pet will be tired\",\r\n    \"instructions\": \"Monitor for any fever or abnormal lack of energy, call if you notice anything unusual\",\r\n    \"visitsId\": 3\r\n  }","options":{"raw":{"language":"json"}}},"url":"localhost:3000/api/treatments/4"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"X-Powered-By","value":"Express"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"328"},{"key":"ETag","value":"W/\"148-wr5f2IuIaY3NESrA9ojTh5H+k9o\""},{"key":"Date","value":"Sun, 12 Apr 2026 22:18:53 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 4,\n    \"issue\": \"sore leg from vaccines\",\n    \"description\": \"Administered vaccines in right front leg, will be sore and pet will be tired\",\n    \"instructions\": \"Monitor for any fever or abnormal lack of energy, call if you notice anything unusual\",\n    \"createdAt\": \"2026-04-12T22:18:38.725Z\",\n    \"updatedAt\": \"2026-04-12T22:18:53.511Z\",\n    \"visitsId\": 3\n}"}],"_postman_id":"843253e8-d683-4fbc-869b-412a66d3305d"},{"name":"Delete treatment","id":"fc37d082-56af-40d7-8d17-3c5818c6951c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"localhost:3000/api/treatments/4","urlObject":{"port":"3000","path":["api","treatments","4"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"b8b26d52-17fe-4d36-af19-dafa4373d752","name":"Delete treatment","originalRequest":{"method":"DELETE","header":[],"url":"localhost:3000/api/treatments/4"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"X-Powered-By","value":"Express"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"44"},{"key":"ETag","value":"W/\"2c-wHnhzjGjmi52ie76nEu1IA+XBQE\""},{"key":"Date","value":"Sun, 12 Apr 2026 22:19:00 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Treatment deleted successfully\"\n}"}],"_postman_id":"fc37d082-56af-40d7-8d17-3c5818c6951c"}],"id":"44652933-ee32-4f1e-866b-b06aebd1bada","description":"<p>Treatments API</p>\n","_postman_id":"44652933-ee32-4f1e-866b-b06aebd1bada"}]}