{"info":{"_postman_id":"22a183db-3cb5-412d-9c96-9c6896484a8e","name":"konsultasi dosen","description":"<html><head></head><body><h2 id=\"konsultasi-dosen-api\">Konsultasi Dosen API</h2>\n<p>This collection covers the API endpoints for the <strong>Konsultasi Dosen</strong> system — an academic consultation scheduling platform. It is organized into three microservices:</p>\n<h3 id=\"1-user-service\">1. User Service</h3>\n<p>Manages the core academic actors:</p>\n<ul>\n<li><strong>Mahasiswa (Students)</strong> — Create, retrieve (all or by NIM), update, and delete student records.</li>\n<li><strong>Dosen (Lecturers)</strong> — Create, retrieve (all or by NIP), update, and delete lecturer records.</li>\n</ul>\n<h3 id=\"2-jadwal-service\">2. Jadwal Service</h3>\n<p>Handles academic scheduling data:</p>\n<ul>\n<li><strong>Mata Kuliah (Courses)</strong> — Full CRUD operations for course management, with lookup by course code.</li>\n<li><strong>Jadwal (Schedules)</strong> — Full CRUD operations for class schedules, with lookup by date.</li>\n</ul>\n<h3 id=\"3-konsultasi-service\">3. Konsultasi Service</h3>\n<p>Manages consultation sessions between students and lecturers:</p>\n<ul>\n<li>Create, retrieve (all or by ID), update, and delete consultation schedule entries.</li>\n</ul>\n<hr>\n<p>All requests use environment variables (<code>http://127.0.0.1:8000/api</code>, <code>http://127.0.0.1:8001/api</code>, <code>http://localhost:3000/api/konsultasi</code>) to configure the base URLs per environment.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"25808118","collectionId":"22a183db-3cb5-412d-9c96-9c6896484a8e","publishedId":"2sBXqJKgLD","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2026-04-29T06:51:40.000Z"},"item":[{"name":"user service","item":[{"name":"mahasiswa","item":[{"name":"get all mahasiswa","id":"1825c760-fb25-4ddc-a49b-567968a3d734","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://127.0.0.1:8000/api/mahasiswa","urlObject":{"path":["mahasiswa"],"host":["http://127.0.0.1:8000/api"],"query":[],"variable":[]}},"response":[{"id":"92564ef8-0945-4ff2-a909-da1dcbc33d14","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"http://127.0.0.1:8000/api/mahasiswa"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Host","value":"127.0.0.1:8000"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.7"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Wed, 29 Apr 2026 07:07:31 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Success\",\n    \"message\": \"List Mahasiswa\",\n    \"data\": [\n        {\n            \"id\": 1,\n            \"nim\": \"123456768\",\n            \"nama\": \"Surya Nata\",\n            \"kelas\": \"IS-07-03\",\n            \"prodi\": \"sistem nuklir\",\n            \"telp\": \"089922992030\",\n            \"email\": \"surya@gmail.com\",\n            \"created_at\": \"2026-04-29T07:05:09.000000Z\",\n            \"updated_at\": \"2026-04-29T07:05:09.000000Z\"\n        },\n        {\n            \"id\": 3,\n            \"nim\": \"8765432\",\n            \"nama\": \"Rezu\",\n            \"kelas\": \"IS-07-03\",\n            \"prodi\": \"sistem nuklir\",\n            \"telp\": \"089922992021\",\n            \"email\": \"raju@gmail.com\",\n            \"created_at\": \"2026-04-29T07:07:25.000000Z\",\n            \"updated_at\": \"2026-04-29T07:07:25.000000Z\"\n        }\n    ]\n}"},{"id":"8cd82295-af96-470b-aad9-99621880a870","name":"404 Not Found","originalRequest":{"method":"GET","header":[],"url":"http://127.0.0.1:8000/api/mahasiswa"},"status":"Not Found","code":404,"_postman_previewlanguage":null,"header":[{"key":"Host","value":"127.0.0.1:8000"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.7"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Wed, 29 Apr 2026 07:03:54 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Failed\",\n    \"message\": \"Data tidak ditemukan\",\n    \"data\": null\n}"}],"_postman_id":"1825c760-fb25-4ddc-a49b-567968a3d734"},{"name":"create mahasiswa","id":"06e382a3-662b-4925-9d4f-566b4c336438","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"nim\": \"8765432\",\r\n    \"nama\": \"Rezu\",\r\n    \"kelas\": \"IS-07-03\",\r\n    \"prodi\": \"sistem nuklir\",\r\n    \"telp\": \"089922992021\",\r\n    \"email\": \"raju@gmail.com\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://127.0.0.1:8000/api/mahasiswa","urlObject":{"path":["mahasiswa"],"host":["http://127.0.0.1:8000/api"],"query":[],"variable":[]}},"response":[{"id":"5b14d5c8-baef-40d6-a695-3483a077bd74","name":"201 Created","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"nim\": \"123456768\",\r\n    \"nama\": \"Surya Nata\",\r\n    \"kelas\": \"IS-07-03\",\r\n    \"prodi\": \"sistem nuklir\",\r\n    \"telp\": \"089922992030\",\r\n    \"email\": \"surya@gmail.com\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://127.0.0.1:8000/api/mahasiswa"},"status":"Created","code":201,"_postman_previewlanguage":null,"header":[{"key":"Host","value":"127.0.0.1:8000"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.7"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Wed, 29 Apr 2026 07:05:09 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Success\",\n    \"message\": \"Data berhasil ditambahkan\",\n    \"data\": {\n        \"nim\": \"123456768\",\n        \"nama\": \"Surya Nata\",\n        \"kelas\": \"IS-07-03\",\n        \"prodi\": \"sistem nuklir\",\n        \"telp\": \"089922992030\",\n        \"email\": \"surya@gmail.com\",\n        \"updated_at\": \"2026-04-29T07:05:09.000000Z\",\n        \"created_at\": \"2026-04-29T07:05:09.000000Z\",\n        \"id\": 1\n    }\n}"},{"id":"2e8fb939-0fc2-4708-a16f-6281e99c55f0","name":"400 Bad Request","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"nim\": \"\",\r\n    \"nama\": \"Surya Nata\",\r\n    \"kelas\": \"IS-07-03\",\r\n    \"prodi\": \"sistem nuklir\",\r\n    \"telp\": \"089922992030\",\r\n    \"email\": \"surya@gmail.com\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://127.0.0.1:8000/api/mahasiswa"},"status":"Bad Request","code":400,"_postman_previewlanguage":null,"header":[{"key":"Host","value":"127.0.0.1:8000"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.7"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Wed, 29 Apr 2026 07:06:05 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Failed\",\n    \"message\": {\n        \"nim\": [\n            \"The nim field is required.\"\n        ]\n    },\n    \"data\": null\n}"}],"_postman_id":"06e382a3-662b-4925-9d4f-566b4c336438"},{"name":"get mahasiswa by nim","id":"c4487cb9-1411-43f9-8639-42128ca0cf17","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://127.0.0.1:8000/api/mahasiswa/8765432","urlObject":{"path":["mahasiswa","8765432"],"host":["http://127.0.0.1:8000/api"],"query":[],"variable":[]}},"response":[{"id":"368e2fe9-c2d1-43d0-a787-1fdfb127c264","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"http://127.0.0.1:8000/api/mahasiswa/123456768"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Host","value":"127.0.0.1:8000"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.7"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Wed, 29 Apr 2026 07:09:31 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Success\",\n    \"message\": \"Data ditemukan\",\n    \"data\": {\n        \"id\": 1,\n        \"nim\": \"123456768\",\n        \"nama\": \"Surya Nata\",\n        \"kelas\": \"IS-07-03\",\n        \"prodi\": \"sistem nuklir\",\n        \"telp\": \"089922992030\",\n        \"email\": \"surya@gmail.com\",\n        \"created_at\": \"2026-04-29T07:05:09.000000Z\",\n        \"updated_at\": \"2026-04-29T07:05:09.000000Z\"\n    }\n}"},{"id":"cebb8c13-dd23-4a51-b9ce-61b518e3587b","name":"404 Not Found","originalRequest":{"method":"GET","header":[],"url":"http://127.0.0.1:8000/api/mahasiswa/1"},"status":"Not Found","code":404,"_postman_previewlanguage":null,"header":[{"key":"Host","value":"127.0.0.1:8000"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.7"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Wed, 29 Apr 2026 07:10:22 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Failed\",\n    \"message\": \"Data tidak ditemukan\",\n    \"data\": null\n}"}],"_postman_id":"c4487cb9-1411-43f9-8639-42128ca0cf17"},{"name":"edit mahasiswa","id":"9abe26e0-b02f-4cca-ae30-5113a04c6007","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"prodi\": \"management elektro\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://127.0.0.1:8000/api/mahasiswa/8765432","urlObject":{"path":["mahasiswa","8765432"],"host":["http://127.0.0.1:8000/api"],"query":[],"variable":[]}},"response":[{"id":"c4b58e40-4a6d-491c-9e7e-3d6dfdb473ca","name":"200 OK","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"prodi\": \"management elektro\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://127.0.0.1:8000/api/mahasiswa/8765432"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Host","value":"127.0.0.1:8000"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.7"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Wed, 29 Apr 2026 07:11:55 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Success\",\n    \"message\": \"Data berhasil diupdate\",\n    \"data\": {\n        \"id\": 3,\n        \"nim\": \"8765432\",\n        \"nama\": \"Rezu\",\n        \"kelas\": \"IS-07-03\",\n        \"prodi\": \"management elektro\",\n        \"telp\": \"089922992021\",\n        \"email\": \"raju@gmail.com\",\n        \"created_at\": \"2026-04-29T07:07:25.000000Z\",\n        \"updated_at\": \"2026-04-29T07:11:55.000000Z\"\n    }\n}"},{"id":"382c8494-0d1c-4de0-8f1a-67599597ff31","name":"404 Not Found","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"prodi\": \"management elektro\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://127.0.0.1:8000/api/mahasiswa/1"},"status":"Not Found","code":404,"_postman_previewlanguage":null,"header":[{"key":"Host","value":"127.0.0.1:8000"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.7"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Wed, 29 Apr 2026 07:10:54 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Failed\",\n    \"message\": \"Data tidak ditemukan\",\n    \"data\": null\n}"}],"_postman_id":"9abe26e0-b02f-4cca-ae30-5113a04c6007"},{"name":"delete mahasiswa","id":"067622b3-d8c5-4107-b55d-dd5f5e4c3ec8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"http://127.0.0.1:8000/api/mahasiswa/123456768","urlObject":{"path":["mahasiswa","123456768"],"host":["http://127.0.0.1:8000/api"],"query":[],"variable":[]}},"response":[{"id":"0da0b17f-3d94-4c12-b2b2-a38277a0d539","name":"404 Not Found","originalRequest":{"method":"DELETE","header":[],"url":"http://127.0.0.1:8000/api/mahasiswa/3"},"status":"Not Found","code":404,"_postman_previewlanguage":null,"header":[{"key":"Host","value":"127.0.0.1:8000"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.7"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Wed, 29 Apr 2026 07:12:40 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Failed\",\n    \"message\": \"Data tidak ditemukan\",\n    \"data\": null\n}"},{"id":"5ea1cc94-4b53-4429-bc29-3f5255d2f5c1","name":"200 OK","originalRequest":{"method":"DELETE","header":[],"url":"http://127.0.0.1:8000/api/mahasiswa/123456768"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Host","value":"127.0.0.1:8000"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.7"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Wed, 29 Apr 2026 07:13:22 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Success\",\n    \"message\": \"Data berhasil dihapus\",\n    \"data\": {\n        \"id\": 1,\n        \"nim\": \"123456768\",\n        \"nama\": \"Surya Nata\",\n        \"kelas\": \"IS-07-03\",\n        \"prodi\": \"sistem nuklir\",\n        \"telp\": \"089922992030\",\n        \"email\": \"surya@gmail.com\",\n        \"created_at\": \"2026-04-29T07:05:09.000000Z\",\n        \"updated_at\": \"2026-04-29T07:05:09.000000Z\"\n    }\n}"}],"_postman_id":"067622b3-d8c5-4107-b55d-dd5f5e4c3ec8"}],"id":"0a176970-473e-47c5-b966-b02656a823e3","description":"<p>Handles all CRUD operations for <strong>mahasiswa</strong> (student) data. Includes endpoints to retrieve all students, fetch a specific student by NIM, register a new student, update student information, and delete a student record. Base URL: <code>http://127.0.0.1:8000/api/mahasiswa</code>.</p>\n","_postman_id":"0a176970-473e-47c5-b966-b02656a823e3"},{"name":"dosen","item":[{"name":"get all dosen","id":"977f791c-bf5a-449c-9f73-d01c0ccd70f4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://127.0.0.1:8000/api/dosen","urlObject":{"path":["dosen"],"host":["http://127.0.0.1:8000/api"],"query":[],"variable":[]}},"response":[{"id":"5195b111-b81b-460f-9bef-c169038bf995","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"http://127.0.0.1:8000/api/dosen"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Host","value":"127.0.0.1:8000"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.7"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Wed, 29 Apr 2026 07:17:19 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Success\",\n    \"message\": \"List Dosen\",\n    \"data\": [\n        {\n            \"id\": 1,\n            \"nip\": \"678\",\n            \"nama\": \"prayanto\",\n            \"prodi\": \"sistem teknologi sawit\",\n            \"telp\": \"08100222345\",\n            \"email\": \"prayanto02@gmail.com\",\n            \"created_at\": \"2026-04-29T07:15:25.000000Z\",\n            \"updated_at\": \"2026-04-29T07:15:25.000000Z\"\n        },\n        {\n            \"id\": 2,\n            \"nip\": \"123\",\n            \"nama\": \"joko wanawar\",\n            \"prodi\": \"management sawit\",\n            \"telp\": \"08100222367\",\n            \"email\": \"joko@gmail.com\",\n            \"created_at\": \"2026-04-29T07:17:09.000000Z\",\n            \"updated_at\": \"2026-04-29T07:17:09.000000Z\"\n        }\n    ]\n}"},{"id":"3bed48c0-36ac-4739-a397-1d9ae0808e80","name":"404 Not Found","originalRequest":{"method":"GET","header":[],"url":"http://127.0.0.1:8000/api/dosen"},"status":"Not Found","code":404,"_postman_previewlanguage":null,"header":[{"key":"Host","value":"127.0.0.1:8000"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.7"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Wed, 29 Apr 2026 07:14:49 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Failed\",\n    \"message\": \"Data tidak ditemukan\",\n    \"data\": null\n}"}],"_postman_id":"977f791c-bf5a-449c-9f73-d01c0ccd70f4"},{"name":"create dosen","id":"77f4c3c3-4b8c-4263-94fc-4100ddc4f404","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"nip\": \"123\",\r\n    \"nama\": \"joko wanawar\",\r\n    \"prodi\": \"management sawit\",\r\n    \"telp\": \"08100222367\",\r\n    \"email\": \"joko@gmail.com\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://127.0.0.1:8000/api/dosen","urlObject":{"path":["dosen"],"host":["http://127.0.0.1:8000/api"],"query":[],"variable":[]}},"response":[{"id":"0f3053e3-eec7-494f-b319-d4222d86182b","name":"201 Created","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"nip\": \"678\",\r\n    \"nama\": \"prayanto\",\r\n    \"prodi\": \"sistem teknologi sawit\",\r\n    \"telp\": \"08100222345\",\r\n    \"email\": \"prayanto02@gmail.com\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://127.0.0.1:8000/api/dosen"},"status":"Created","code":201,"_postman_previewlanguage":null,"header":[{"key":"Host","value":"127.0.0.1:8000"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.7"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Wed, 29 Apr 2026 07:15:25 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Success\",\n    \"message\": \"Data berhasil ditambahkan\",\n    \"data\": {\n        \"nip\": \"678\",\n        \"nama\": \"prayanto\",\n        \"prodi\": \"sistem teknologi sawit\",\n        \"telp\": \"08100222345\",\n        \"email\": \"prayanto02@gmail.com\",\n        \"updated_at\": \"2026-04-29T07:15:25.000000Z\",\n        \"created_at\": \"2026-04-29T07:15:25.000000Z\",\n        \"id\": 1\n    }\n}"},{"id":"a458c338-2787-4d0a-b9b8-f9a91fc74ee2","name":"400 Bad Request","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"nip\": \"\",\r\n    \"nama\": \"prayanto\",\r\n    \"prodi\": \"sistem teknologi sawit\",\r\n    \"telp\": \"08100222345\",\r\n    \"email\": \"prayanto02@gmail.com\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://127.0.0.1:8000/api/dosen"},"status":"Bad Request","code":400,"_postman_previewlanguage":null,"header":[{"key":"Host","value":"127.0.0.1:8000"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.7"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Wed, 29 Apr 2026 07:15:53 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Failed\",\n    \"message\": {\n        \"nip\": [\n            \"The nip field is required.\"\n        ]\n    },\n    \"data\": null\n}"}],"_postman_id":"77f4c3c3-4b8c-4263-94fc-4100ddc4f404"},{"name":"get dosen by nip","id":"79ef98ca-6c86-49dc-9f85-370f63a86f89","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://127.0.0.1:8000/api/dosen/678","urlObject":{"path":["dosen","678"],"host":["http://127.0.0.1:8000/api"],"query":[],"variable":[]}},"response":[{"id":"b3c83a26-16a8-4d74-b456-2b9c4e8a4c09","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"http://127.0.0.1:8000/api/dosen/678"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Host","value":"127.0.0.1:8000"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.7"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Wed, 29 Apr 2026 07:18:36 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Success\",\n    \"message\": \"Data ditemukan\",\n    \"data\": {\n        \"id\": 1,\n        \"nip\": \"678\",\n        \"nama\": \"prayanto\",\n        \"prodi\": \"sistem teknologi sawit\",\n        \"telp\": \"08100222345\",\n        \"email\": \"prayanto02@gmail.com\",\n        \"created_at\": \"2026-04-29T07:15:25.000000Z\",\n        \"updated_at\": \"2026-04-29T07:15:25.000000Z\"\n    }\n}"},{"id":"44845e1c-9328-4ae1-87bb-113abca24c31","name":"404 Not Found","originalRequest":{"method":"GET","header":[],"url":"http://127.0.0.1:8000/api/dosen/888999777"},"status":"Not Found","code":404,"_postman_previewlanguage":null,"header":[{"key":"Host","value":"127.0.0.1:8000"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.7"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Wed, 29 Apr 2026 07:17:44 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Failed\",\n    \"message\": \"Data tidak ditemukan\",\n    \"data\": null\n}"}],"_postman_id":"79ef98ca-6c86-49dc-9f85-370f63a86f89"},{"name":"edit dosen","id":"9610151d-964c-47d1-8fff-ad686766e831","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"nama\": \"Rubi santoso\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://127.0.0.1:8000/api/dosen/123","urlObject":{"path":["dosen","123"],"host":["http://127.0.0.1:8000/api"],"query":[],"variable":[]}},"response":[{"id":"67256171-c3d3-41c7-8196-2f42248fca74","name":"200 OK","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"nama\": \"Rubi santoso\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://127.0.0.1:8000/api/dosen/123"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Host","value":"127.0.0.1:8000"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.7"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Wed, 29 Apr 2026 07:20:03 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Success\",\n    \"message\": \"Data berhasil diupdate\",\n    \"data\": {\n        \"id\": 2,\n        \"nip\": \"123\",\n        \"nama\": \"Rubi santoso\",\n        \"prodi\": \"management sawit\",\n        \"telp\": \"08100222367\",\n        \"email\": \"joko@gmail.com\",\n        \"created_at\": \"2026-04-29T07:17:09.000000Z\",\n        \"updated_at\": \"2026-04-29T07:20:03.000000Z\"\n    }\n}"},{"id":"d4990882-98be-42bf-9f53-d7d40a15b8d5","name":"404 Not Found","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"nama\": \"Rubi santoso\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://127.0.0.1:8000/api/dosen/1"},"status":"Not Found","code":404,"_postman_previewlanguage":null,"header":[{"key":"Host","value":"127.0.0.1:8000"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.7"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Wed, 29 Apr 2026 07:19:15 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Failed\",\n    \"message\": \"Data tidak ditemukan\",\n    \"data\": null\n}"}],"_postman_id":"9610151d-964c-47d1-8fff-ad686766e831"},{"name":"delete dosen","id":"1afdcb8b-fa28-4e5a-bd79-9eb79ec8bbe6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"http://127.0.0.1:8000/api/dosen/123","urlObject":{"path":["dosen","123"],"host":["http://127.0.0.1:8000/api"],"query":[],"variable":[]}},"response":[{"id":"83600092-2d90-4eed-bfcf-362e2b70df95","name":"200 OK","originalRequest":{"method":"DELETE","header":[],"url":"http://127.0.0.1:8000/api/dosen/123"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Host","value":"127.0.0.1:8000"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.7"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Wed, 29 Apr 2026 07:20:42 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Success\",\n    \"message\": \"Data berhasil dihapus\",\n    \"data\": {\n        \"id\": 2,\n        \"nip\": \"123\",\n        \"nama\": \"Rubi santoso\",\n        \"prodi\": \"management sawit\",\n        \"telp\": \"08100222367\",\n        \"email\": \"joko@gmail.com\",\n        \"created_at\": \"2026-04-29T07:17:09.000000Z\",\n        \"updated_at\": \"2026-04-29T07:20:03.000000Z\"\n    }\n}"},{"id":"6be823ee-a58f-487b-8335-3363dbe75f6f","name":"404 Not Found","originalRequest":{"method":"DELETE","header":[],"url":"http://127.0.0.1:8000/api/dosen/2"},"status":"Not Found","code":404,"_postman_previewlanguage":null,"header":[{"key":"Host","value":"127.0.0.1:8000"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.7"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Wed, 29 Apr 2026 07:19:34 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Failed\",\n    \"message\": \"Data tidak ditemukan\",\n    \"data\": null\n}"}],"_postman_id":"1afdcb8b-fa28-4e5a-bd79-9eb79ec8bbe6"}],"id":"3b97e636-5f2c-467b-948a-9b8cbef0cc42","description":"<p>Handles all CRUD operations for <strong>dosen</strong> (lecturer) data. Includes endpoints to retrieve all lecturers, fetch a specific lecturer by NIP, register a new lecturer, update lecturer information, and delete a lecturer record. Base URL: <code>http://127.0.0.1:8000/api/dosen</code>.</p>\n","_postman_id":"3b97e636-5f2c-467b-948a-9b8cbef0cc42"}],"id":"138acc2f-95a4-4fc0-a139-bce0ff9b00f8","description":"<p>Contains all endpoints related to the <strong>User Service</strong> microservice. This service manages the core user data for the academic system, organized into two sub-folders: <strong>mahasiswa</strong> (students) and <strong>dosen</strong> (lecturers). Use the <code>http://127.0.0.1:8000/api</code> environment variable as the base URL.</p>\n","_postman_id":"138acc2f-95a4-4fc0-a139-bce0ff9b00f8"},{"name":"jadwal service","item":[{"name":"mata kuliah","item":[{"name":"get all mata kuliah","id":"fa113067-b1dd-4af1-adec-15c1bb6344cc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://127.0.0.1:8001/api/mata-kuliah","urlObject":{"path":["mata-kuliah"],"host":["http://127.0.0.1:8001/api"],"query":[],"variable":[]}},"response":[{"id":"30f9992b-75cd-4b7b-a56e-2ba069d52247","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"http://127.0.0.1:8001/api/mata-kuliah"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Host","value":"127.0.0.1:8001"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.7"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Wed, 29 Apr 2026 07:25:46 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Success\",\n    \"message\": \"Data Mata Kuliah\",\n    \"data\": [\n        {\n            \"id\": 1,\n            \"mata_kuliah\": \"kehutanan sawit\",\n            \"sks\": 2,\n            \"kode_mk\": \"ks002\",\n            \"created_at\": \"2026-04-29T07:24:37.000000Z\",\n            \"updated_at\": \"2026-04-29T07:24:37.000000Z\"\n        },\n        {\n            \"id\": 2,\n            \"mata_kuliah\": \"teknik hukum\",\n            \"sks\": 2,\n            \"kode_mk\": \"th012\",\n            \"created_at\": \"2026-04-29T07:25:36.000000Z\",\n            \"updated_at\": \"2026-04-29T07:25:36.000000Z\"\n        }\n    ]\n}"},{"id":"ccda038f-3958-4704-96a4-0b6b27c48545","name":"404 Not Found","originalRequest":{"method":"GET","header":[],"url":"http://127.0.0.1:8001/api/mata-kuliah"},"status":"Not Found","code":404,"_postman_previewlanguage":null,"header":[{"key":"Host","value":"127.0.0.1:8001"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.7"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Wed, 29 Apr 2026 07:22:26 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Failed\",\n    \"message\": \"Data Mata Kuliah tidak ditemukan\",\n    \"data\": null\n}"}],"_postman_id":"fa113067-b1dd-4af1-adec-15c1bb6344cc"},{"name":"create mata kuliah","id":"3e0f78ad-80a0-43f7-846f-901dc58f576e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"mata_kuliah\": \"teknik hukum\",\r\n    \"sks\": \"2\",\r\n    \"kode_mk\": \"th012\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://127.0.0.1:8001/api/mata-kuliah","urlObject":{"path":["mata-kuliah"],"host":["http://127.0.0.1:8001/api"],"query":[],"variable":[]}},"response":[{"id":"2c40cbad-3fcd-4338-aba3-8b90372e85d9","name":"201 Created","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"mata_kuliah\": \"kehutanan sawit\",\r\n    \"sks\": \"2\",\r\n    \"kode_mk\": \"ks002\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://127.0.0.1:8001/api/mata-kuliah"},"status":"Created","code":201,"_postman_previewlanguage":null,"header":[{"key":"Host","value":"127.0.0.1:8001"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.7"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Wed, 29 Apr 2026 07:24:37 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Success\",\n    \"message\": \"Data Mata kuliah berhasil dibuat\",\n    \"data\": {\n        \"mata_kuliah\": \"kehutanan sawit\",\n        \"sks\": \"2\",\n        \"kode_mk\": \"ks002\",\n        \"updated_at\": \"2026-04-29T07:24:37.000000Z\",\n        \"created_at\": \"2026-04-29T07:24:37.000000Z\",\n        \"id\": 1\n    }\n}"},{"id":"24a4bf93-77c3-47b7-a31a-afda62436867","name":"400 Bad Request","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"mata_kuliah\": \"kehutanan sawit\",\r\n    \"sks\": \"\",\r\n    \"kode_mk\": \"ks002\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://127.0.0.1:8001/api/mata-kuliah"},"status":"Bad Request","code":400,"_postman_previewlanguage":null,"header":[{"key":"Host","value":"127.0.0.1:8001"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.7"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Wed, 29 Apr 2026 07:24:08 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Failed\",\n    \"message\": {\n        \"sks\": [\n            \"The sks field is required.\"\n        ]\n    },\n    \"data\": null\n}"}],"_postman_id":"3e0f78ad-80a0-43f7-846f-901dc58f576e"},{"name":"get mata kuliah by kode mk","id":"f1a5ed10-92af-4bb0-8321-6158d7bb143c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://127.0.0.1:8001/api/mata-kuliah/ks002","urlObject":{"path":["mata-kuliah","ks002"],"host":["http://127.0.0.1:8001/api"],"query":[],"variable":[]}},"response":[{"id":"f8a24ed1-271b-4b0d-bb71-839813a01826","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"http://127.0.0.1:8001/api/mata-kuliah/ks002"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Host","value":"127.0.0.1:8001"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.7"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Wed, 29 Apr 2026 07:26:23 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Success\",\n    \"message\": \"Data mata kuliah ditemukan\",\n    \"data\": {\n        \"id\": 1,\n        \"mata_kuliah\": \"kehutanan sawit\",\n        \"sks\": 2,\n        \"kode_mk\": \"ks002\",\n        \"created_at\": \"2026-04-29T07:24:37.000000Z\",\n        \"updated_at\": \"2026-04-29T07:24:37.000000Z\"\n    }\n}"},{"id":"4fcdca19-cfa5-4824-971e-4cd88933deb5","name":"404 Not Found","originalRequest":{"method":"GET","header":[],"url":"http://127.0.0.1:8001/api/mata-kuliah/ks002"},"status":"Not Found","code":404,"_postman_previewlanguage":null,"header":[{"key":"Host","value":"127.0.0.1:8001"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.7"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Wed, 29 Apr 2026 07:22:54 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Failed\",\n    \"message\": \"Data mata kuliah tidak ditemukan\",\n    \"data\": null\n}"}],"_postman_id":"f1a5ed10-92af-4bb0-8321-6158d7bb143c"},{"name":"edit mata kuliah","id":"fbe61104-85fb-49cc-a4ac-116cd15151d3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"mata_kuliah\": \"astronomi rantai pasok\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://127.0.0.1:8001/api/mata-kuliah/ks002","urlObject":{"path":["mata-kuliah","ks002"],"host":["http://127.0.0.1:8001/api"],"query":[],"variable":[]}},"response":[{"id":"0404a146-1ea0-4d10-8f1b-b448d01a47e8","name":"200 OK","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"mata_kuliah\": \"astronomi rantai pasok\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://127.0.0.1:8001/api/mata-kuliah/ks002"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Host","value":"127.0.0.1:8001"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.7"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Wed, 29 Apr 2026 07:27:44 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Success\",\n    \"message\": \"Data mata kuliah berhasil diupdate\",\n    \"data\": {\n        \"id\": 1,\n        \"mata_kuliah\": \"astronomi rantai pasok\",\n        \"sks\": 2,\n        \"kode_mk\": \"ks002\",\n        \"created_at\": \"2026-04-29T07:24:37.000000Z\",\n        \"updated_at\": \"2026-04-29T07:27:44.000000Z\"\n    }\n}"},{"id":"a66b2676-9dc3-4611-94dd-3b286c6b0bdb","name":"404 Not Found","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"mata_kuliah\": \"astronomi rantai pasok\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://127.0.0.1:8001/api/mata-kuliah/1"},"status":"Not Found","code":404,"_postman_previewlanguage":null,"header":[{"key":"Host","value":"127.0.0.1:8001"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.7"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Wed, 29 Apr 2026 07:23:15 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Failed\",\n    \"message\": \"Data mata kuliah tidak ditemukan\",\n    \"data\": null\n}"}],"_postman_id":"fbe61104-85fb-49cc-a4ac-116cd15151d3"},{"name":"delete mata kuliah","id":"c334ce8c-a575-4389-b91c-0ece5f01832e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"http://127.0.0.1:8001/api/mata-kuliah/ks002","urlObject":{"path":["mata-kuliah","ks002"],"host":["http://127.0.0.1:8001/api"],"query":[],"variable":[]}},"response":[{"id":"9803e724-f6a9-400c-866e-b8c96c6646d4","name":"200 OK","originalRequest":{"method":"DELETE","header":[],"url":"http://127.0.0.1:8001/api/mata-kuliah/ks002"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Host","value":"127.0.0.1:8001"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.7"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Wed, 29 Apr 2026 07:28:44 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Success\",\n    \"message\": \"Data mata kuliah berhasil dihapus\",\n    \"data\": {\n        \"id\": 1,\n        \"mata_kuliah\": \"astronomi rantai pasok\",\n        \"sks\": 2,\n        \"kode_mk\": \"ks002\",\n        \"created_at\": \"2026-04-29T07:24:37.000000Z\",\n        \"updated_at\": \"2026-04-29T07:27:44.000000Z\"\n    }\n}"},{"id":"4af55f71-b12b-4ffd-98ac-afa78173d817","name":"404 Not Found","originalRequest":{"method":"DELETE","header":[],"url":"http://127.0.0.1:8001/api/mata-kuliah/2"},"status":"Not Found","code":404,"_postman_previewlanguage":null,"header":[{"key":"Host","value":"127.0.0.1:8001"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.7"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Wed, 29 Apr 2026 07:23:34 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Failed\",\n    \"message\": \"Data mata kuliah tidak ditemukan\",\n    \"data\": null\n}"}],"_postman_id":"c334ce8c-a575-4389-b91c-0ece5f01832e"}],"id":"364b995b-65ba-4fe9-a378-7100952fa9eb","description":"<p>Handles all CRUD operations for <strong>mata kuliah</strong> (course/subject) data. Includes endpoints to retrieve all courses, fetch a specific course by course code (kode MK), create a new course, update course details, and delete a course. Base URL: <code>http://127.0.0.1:8001/api/mata-kuliah</code>.</p>\n","_postman_id":"364b995b-65ba-4fe9-a378-7100952fa9eb"},{"name":"jadwal","item":[{"name":"get all jadwal","id":"d1638930-63c5-4687-b92e-70e39f7f8225","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://127.0.0.1:8001/api/jadwal","urlObject":{"path":["jadwal"],"host":["http://127.0.0.1:8001/api"],"query":[],"variable":[]}},"response":[{"id":"ecb11aa3-aeca-4916-bc9e-6f7d2bf62a2c","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"http://127.0.0.1:8001/api/jadwal"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Host","value":"127.0.0.1:8001"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.7"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Wed, 29 Apr 2026 07:38:08 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Success\",\n    \"message\": \"Data Jadwal\",\n    \"data\": [\n        {\n            \"id\": 2,\n            \"nip_dosen\": 678,\n            \"tanggal\": \"2026-01-02\",\n            \"waktu_mulai\": \"06:30:00\",\n            \"waktu_selesai\": \"08:30:00\",\n            \"kode_mk\": \"th012\",\n            \"created_at\": \"2026-04-29T07:36:48.000000Z\",\n            \"updated_at\": \"2026-04-29T07:36:48.000000Z\"\n        }\n    ]\n}"},{"id":"cf782f2c-bdab-44d9-8828-62bbf4f026e3","name":"404 Not Found","originalRequest":{"method":"GET","header":[],"url":"http://127.0.0.1:8001/api/jadwal"},"status":"Not Found","code":404,"_postman_previewlanguage":null,"header":[{"key":"Host","value":"127.0.0.1:8001"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.7"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Wed, 29 Apr 2026 07:30:41 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Failed\",\n    \"message\": \"Data Jadwal tidak ditemukan\",\n    \"data\": null\n}"}],"_postman_id":"d1638930-63c5-4687-b92e-70e39f7f8225"},{"name":"create jadwal","id":"24081d4c-873d-48b1-a5ef-524866b42564","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"nip_dosen\": \"678\",\r\n    \"tanggal\": \"02-01-2026\",\r\n    \"waktu_mulai\": \"06:30\",\r\n    \"waktu_selesai\": \"08:30\",\r\n    \"kode_mk\": \"th012\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://127.0.0.1:8001/api/jadwal","urlObject":{"path":["jadwal"],"host":["http://127.0.0.1:8001/api"],"query":[],"variable":[]}},"response":[{"id":"e083f812-aa4c-4fcc-91b8-4d89f8e6a68e","name":"200 OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"nip_dosen\": \"678\",\r\n    \"tanggal\": \"02-01-2026\",\r\n    \"waktu_mulai\": \"06:30\",\r\n    \"waktu_selesai\": \"08:30\",\r\n    \"kode_mk\": \"th012\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://127.0.0.1:8001/api/jadwal"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Host","value":"127.0.0.1:8001"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.7"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Wed, 29 Apr 2026 07:36:48 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Success\",\n    \"message\": \"Data jadwal berhasil dibuat\",\n    \"data\": [\n        {\n            \"nip_dosen\": \"678\",\n            \"tanggal\": \"02-01-2026\",\n            \"waktu_mulai\": \"06:30\",\n            \"waktu_selesai\": \"08:30\",\n            \"kode_mk\": \"th012\",\n            \"updated_at\": \"2026-04-29T07:36:48.000000Z\",\n            \"created_at\": \"2026-04-29T07:36:48.000000Z\",\n            \"id\": 2\n        },\n        {\n            \"id\": 1,\n            \"nip\": \"678\",\n            \"nama\": \"prayanto\",\n            \"prodi\": \"sistem teknologi sawit\",\n            \"telp\": \"08100222345\",\n            \"email\": \"prayanto02@gmail.com\",\n            \"created_at\": \"2026-04-29T07:15:25.000000Z\",\n            \"updated_at\": \"2026-04-29T07:15:25.000000Z\"\n        }\n    ]\n}"},{"id":"e56db0f1-ad30-4ecc-bf45-2687ddb30627","name":"400 Bad Request","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"nip_dosen\": \"678\",\r\n    \"tanggal\": \"02-01-2026\",\r\n    \"waktu_mulai\": \"06:30\",\r\n    \"waktu_selesai\": \"\",\r\n    \"kode_mk\": \"ks002\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://127.0.0.1:8001/api/jadwal"},"status":"Bad Request","code":400,"_postman_previewlanguage":null,"header":[{"key":"Host","value":"127.0.0.1:8001"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.7"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Wed, 29 Apr 2026 07:34:17 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Failed\",\n    \"message\": {\n        \"waktu_selesai\": [\n            \"The waktu selesai field is required.\"\n        ]\n    },\n    \"data\": null\n}"},{"id":"7cda9369-b7a2-440b-ba8a-10eab05ecea6","name":"404 Not Found","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"nip_dosen\": \"6789\",\r\n    \"tanggal\": \"02-01-2026\",\r\n    \"waktu_mulai\": \"06:30\",\r\n    \"waktu_selesai\": \"08.30\",\r\n    \"kode_mk\": \"ks002\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://127.0.0.1:8001/api/jadwal"},"status":"Not Found","code":404,"_postman_previewlanguage":null,"header":[{"key":"Host","value":"127.0.0.1:8001"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.7"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Wed, 29 Apr 2026 07:35:24 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Failed\",\n    \"message\": \"Data dosen tidak ditemukan\",\n    \"data\": null\n}"}],"_postman_id":"24081d4c-873d-48b1-a5ef-524866b42564"},{"name":"get jadwal by tanggal","id":"f0114cd2-0a19-48e8-aec3-479ae8c3e5d1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://127.0.0.1:8001/api/jadwal/2026-01-02","urlObject":{"path":["jadwal","2026-01-02"],"host":["http://127.0.0.1:8001/api"],"query":[],"variable":[]}},"response":[{"id":"fbf2d533-44da-4c4c-b906-3981b0feb88c","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"http://127.0.0.1:8001/api/jadwal/2026-01-02"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Host","value":"127.0.0.1:8001"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.7"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Wed, 29 Apr 2026 07:40:39 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Success\",\n    \"message\": \"Data jadwal ditemukan\",\n    \"data\": {\n        \"id\": 2,\n        \"nip_dosen\": 678,\n        \"tanggal\": \"2026-01-02\",\n        \"waktu_mulai\": \"06:30:00\",\n        \"waktu_selesai\": \"08:30:00\",\n        \"kode_mk\": \"th012\",\n        \"created_at\": \"2026-04-29T07:36:48.000000Z\",\n        \"updated_at\": \"2026-04-29T07:36:48.000000Z\"\n    }\n}"},{"id":"7c56b902-fa73-409f-bdbe-7e3860b101b4","name":"404 Not Found","originalRequest":{"method":"GET","header":[],"url":"http://127.0.0.1:8001/api/jadwal/2026-04-27"},"status":"Not Found","code":404,"_postman_previewlanguage":null,"header":[{"key":"Host","value":"127.0.0.1:8001"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.7"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Wed, 29 Apr 2026 07:32:14 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Failed\",\n    \"message\": \"Data jadwal tidak ditemukan\",\n    \"data\": null\n}"}],"_postman_id":"f0114cd2-0a19-48e8-aec3-479ae8c3e5d1"},{"name":"edit jadwal","id":"a15f05d3-2ccf-4cd6-88eb-5485344e87f7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"tanggal\": \"02-11-2026\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://127.0.0.1:8001/api/jadwal/2","urlObject":{"path":["jadwal","2"],"host":["http://127.0.0.1:8001/api"],"query":[],"variable":[]}},"response":[{"id":"e4b2be4b-ad8c-4f29-bd67-62b7a622a137","name":"200 OK","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"tanggal\": \"02-11-2026\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://127.0.0.1:8001/api/jadwal/2"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Host","value":"127.0.0.1:8001"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.7"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Wed, 29 Apr 2026 07:41:33 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Success\",\n    \"message\": \"Data jadwal berhasil diupdate\",\n    \"data\": {\n        \"id\": 2,\n        \"nip_dosen\": 678,\n        \"tanggal\": \"02-11-2026\",\n        \"waktu_mulai\": \"06:30:00\",\n        \"waktu_selesai\": \"08:30:00\",\n        \"kode_mk\": \"th012\",\n        \"created_at\": \"2026-04-29T07:36:48.000000Z\",\n        \"updated_at\": \"2026-04-29T07:41:33.000000Z\"\n    }\n}"},{"id":"b6972f5b-0748-4f8f-9dfe-b32292b36e0a","name":"404 Not Found","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"tanggal\": \"02-11-2026\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://127.0.0.1:8001/api/jadwal/3"},"status":"Not Found","code":404,"_postman_previewlanguage":null,"header":[{"key":"Host","value":"127.0.0.1:8001"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.7"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Wed, 29 Apr 2026 07:32:52 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Failed\",\n    \"message\": \"Data jadwal tidak ditemukan\",\n    \"data\": null\n}"}],"_postman_id":"a15f05d3-2ccf-4cd6-88eb-5485344e87f7"},{"name":"delete jadwal","id":"b90c1890-c580-40e1-83d3-79733971b07c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"http://127.0.0.1:8001/api/jadwal/2","urlObject":{"path":["jadwal","2"],"host":["http://127.0.0.1:8001/api"],"query":[],"variable":[]}},"response":[{"id":"6c743178-1b1c-4f4f-bbce-bb9cb001742e","name":"200 OK","originalRequest":{"method":"DELETE","header":[],"url":"http://127.0.0.1:8001/api/jadwal/2"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Host","value":"127.0.0.1:8001"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.7"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Wed, 29 Apr 2026 07:41:59 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Success\",\n    \"message\": \"Data jadwal berhasil dihapus\",\n    \"data\": {\n        \"id\": 2,\n        \"nip_dosen\": 678,\n        \"tanggal\": \"2026-11-02\",\n        \"waktu_mulai\": \"06:30:00\",\n        \"waktu_selesai\": \"08:30:00\",\n        \"kode_mk\": \"th012\",\n        \"created_at\": \"2026-04-29T07:36:48.000000Z\",\n        \"updated_at\": \"2026-04-29T07:41:33.000000Z\"\n    }\n}"},{"id":"dc197fae-930c-431a-8410-951341c0363d","name":"404 Not Found","originalRequest":{"method":"DELETE","header":[],"url":"http://127.0.0.1:8001/api/jadwal/3"},"status":"Not Found","code":404,"_postman_previewlanguage":null,"header":[{"key":"Host","value":"127.0.0.1:8001"},{"key":"Connection","value":"close"},{"key":"X-Powered-By","value":"PHP/8.3.7"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Wed, 29 Apr 2026 07:33:09 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Access-Control-Allow-Origin","value":"*"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Failed\",\n    \"message\": \"Data jadwal tidak ditemukan\",\n    \"data\": null\n}"}],"_postman_id":"b90c1890-c580-40e1-83d3-79733971b07c"}],"id":"c33a2f9b-2c21-4b61-8d80-d4ced75d7a9f","description":"<p>Handles all CRUD operations for <strong>jadwal</strong> (schedule) data. Includes endpoints to retrieve all schedules, fetch a schedule by date/ID, create a new schedule, update an existing schedule, and delete a schedule. Base URL: <code>http://127.0.0.1:8001/api/jadwal</code>.</p>\n","_postman_id":"c33a2f9b-2c21-4b61-8d80-d4ced75d7a9f"}],"id":"21233564-84c8-4447-a39d-33ef29436495","description":"<p>Contains all endpoints related to the <strong>Jadwal Service</strong> microservice. This service manages academic scheduling, organized into two sub-folders: <strong>mata kuliah</strong> (courses) and <strong>jadwal</strong> (schedules). Use the <code>http://127.0.0.1:8001/api</code> environment variable as the base URL.</p>\n","_postman_id":"21233564-84c8-4447-a39d-33ef29436495"},{"name":"konsultasi-service","item":[{"name":"get all jadwal konsultasi","id":"68bdc1ba-b45b-4190-b55f-c979e80e5449","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:3000/api/konsultasi","urlObject":{"host":["http://localhost:3000/api/konsultasi"],"query":[],"variable":[]}},"response":[{"id":"9515d782-4b14-45cd-b168-722f57adef82","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"http://localhost:3000/api/konsultasi"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"266"},{"key":"ETag","value":"W/\"10a-KGMcDJr7yeGDC8mEoHUw7kk9mVU\""},{"key":"Date","value":"Wed, 29 Apr 2026 07:58:52 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Success\",\n    \"message\": \"GET all konsultasi\",\n    \"data\": [\n        {\n            \"id\": 7,\n            \"nim\": 8765432,\n            \"nip\": 678,\n            \"tanggal\": \"2026-02-01T17:00:00.000Z\",\n            \"waktu\": \"10:50:00\",\n            \"topik\": \"skripsi\",\n            \"status\": \"pending\",\n            \"created_at\": \"2026-04-29T07:56:59.000Z\",\n            \"updated_at\": \"2026-04-29T07:56:59.000Z\"\n        }\n    ]\n}"},{"id":"4f94a943-2302-4139-964d-4f110ae2c6b2","name":"404 Not Found","originalRequest":{"method":"GET","header":[],"url":"http://localhost:3000/api/konsultasi"},"status":"Not Found","code":404,"_postman_previewlanguage":null,"header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"62"},{"key":"ETag","value":"W/\"3e-IjMqEzdFciuXVlsy6fPGtt9MLSE\""},{"key":"Date","value":"Wed, 29 Apr 2026 07:42:35 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Failed\",\n    \"message\": \"Tidak ada konsultasi ditemukan\"\n}"}],"_postman_id":"68bdc1ba-b45b-4190-b55f-c979e80e5449"},{"name":"create jadwal konsultasi","id":"3bf5eaa5-c44b-4fb7-ac3a-8f4afd3b2221","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"nim\": \"8765432\",\r\n    \"nip\": \"678\",\r\n    \"tanggal\": \"2026-02-02\",\r\n    \"waktu\": \"10:50\",\r\n    \"topik\": \"skripsi\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:3000/api/konsultasi","urlObject":{"host":["http://localhost:3000/api/konsultasi"],"query":[],"variable":[]}},"response":[{"id":"8e82cabd-c955-4411-8f66-a5bc11c79b1f","name":"201 Created","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"nim\": \"8765432\",\r\n    \"nip\": \"678\",\r\n    \"tanggal\": \"2026-02-02\",\r\n    \"waktu\": \"10:50\",\r\n    \"topik\": \"skripsi\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:3000/api/konsultasi"},"status":"Created","code":201,"_postman_previewlanguage":null,"header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"711"},{"key":"ETag","value":"W/\"2c7-whPlqHorWHZ5ABDEb1kPcq+v+0w\""},{"key":"Date","value":"Wed, 29 Apr 2026 07:56:59 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Success\",\n    \"message\": \"Konsultasi berhasil dibuat\",\n    \"data\": {\n        \"id\": 7,\n        \"mahasiswa\": {\n            \"status\": \"Success\",\n            \"message\": \"Data ditemukan\",\n            \"data\": {\n                \"id\": 3,\n                \"nim\": \"8765432\",\n                \"nama\": \"Rezu\",\n                \"kelas\": \"IS-07-03\",\n                \"prodi\": \"management elektro\",\n                \"telp\": \"089922992021\",\n                \"email\": \"raju@gmail.com\",\n                \"created_at\": \"2026-04-29T07:07:25.000000Z\",\n                \"updated_at\": \"2026-04-29T07:11:55.000000Z\"\n            }\n        },\n        \"dosen\": {\n            \"status\": \"Success\",\n            \"message\": \"Data ditemukan\",\n            \"data\": {\n                \"id\": 1,\n                \"nip\": \"678\",\n                \"nama\": \"prayanto\",\n                \"prodi\": \"sistem teknologi sawit\",\n                \"telp\": \"08100222345\",\n                \"email\": \"prayanto02@gmail.com\",\n                \"created_at\": \"2026-04-29T07:15:25.000000Z\",\n                \"updated_at\": \"2026-04-29T07:15:25.000000Z\"\n            }\n        },\n        \"tanggal\": \"2026-02-02\",\n        \"waktu\": \"10:50\",\n        \"topik\": \"skripsi\",\n        \"status\": \"pending\"\n    }\n}"},{"id":"db5828e5-07ed-416b-aa2e-649ae7561b7b","name":"400 Bad Request","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"nim\": \"8765432\",\r\n    \"nip\": \"678\",\r\n    \"tanggal\": \"2026-01-02\",\r\n    \"waktu\": \"10:50\",\r\n    \"topik\": \"skripsi\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:3000/api/konsultasi"},"status":"Bad Request","code":400,"_postman_previewlanguage":null,"header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"93"},{"key":"ETag","value":"W/\"5d-hWdj+x3PZxzevcEsFI6Fxu1fr2o\""},{"key":"Date","value":"Wed, 29 Apr 2026 07:45:43 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Failed\",\n    \"message\": \"Dosen Sudah memiliki jadwal pada tanggal tersebut sudah penuh\"\n}"},{"id":"edcb0776-3a15-490a-b39d-ba0b94c5d6bc","name":"400 Bad Request sudah memiliki jadwal","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"nim\": \"8765432\",\r\n    \"nip\": \"678\",\r\n    \"tanggal\": \"2026-02-02\",\r\n    \"waktu\": \"10:50\",\r\n    \"topik\": \"skripsi\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:3000/api/konsultasi"},"status":"Bad Request","code":400,"_postman_previewlanguage":null,"header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"100"},{"key":"ETag","value":"W/\"64-OOz8aV2I+ackSxTnghY9eI7SVSI\""},{"key":"Date","value":"Wed, 29 Apr 2026 07:57:19 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Failed\",\n    \"message\": \"Dosen sudah memiliki jadwal konsultasi di tanggal dan waktu tersebut\"\n}"},{"id":"716777fe-9ce0-42e9-a7d3-fdeecd1b0de7","name":"500 Internal Server Error","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"nim\": \"12345678\",\r\n    \"nip\": \"888999777\",\r\n    \"tanggal\": \"2026-04-27\",\r\n    \"waktu\": \"10:50\",\r\n    \"topik\": \"skripsi\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:3000/api/konsultasi"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":null,"header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"94"},{"key":"ETag","value":"W/\"5e-zepo5lS/JPwxRWI2JPQztgsvZFk\""},{"key":"Date","value":"Wed, 29 Apr 2026 07:43:36 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Failed\",\n    \"message\": \"Failed to fetch mahasiswa: Request failed with status code 404\"\n}"}],"_postman_id":"3bf5eaa5-c44b-4fb7-ac3a-8f4afd3b2221"},{"name":"get konsultasi by id","id":"7a8b962e-4d84-4ca6-8e1e-332c0fd06e94","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:3000/api/konsultasi/7","urlObject":{"path":["7"],"host":["http://localhost:3000/api/konsultasi"],"query":[],"variable":[]}},"response":[{"id":"23741197-2ebb-40c3-a30a-8b40b3b6e266","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"http://localhost:3000/api/konsultasi/7"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"266"},{"key":"ETag","value":"W/\"10a-yQCyQ81c7UVyJVLmTjh1qWUoCSs\""},{"key":"Date","value":"Wed, 29 Apr 2026 07:58:30 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Success\",\n    \"message\": \"GET konsultasi by id\",\n    \"data\": {\n        \"id\": 7,\n        \"nim\": 8765432,\n        \"nip\": 678,\n        \"tanggal\": \"2026-02-01T17:00:00.000Z\",\n        \"waktu\": \"10:50:00\",\n        \"topik\": \"skripsi\",\n        \"status\": \"pending\",\n        \"created_at\": \"2026-04-29T07:56:59.000Z\",\n        \"updated_at\": \"2026-04-29T07:56:59.000Z\"\n    }\n}"},{"id":"ed6c901a-156d-424b-a462-5f1b61bb6e39","name":"404 Not Found","originalRequest":{"method":"GET","header":[],"url":"http://localhost:3000/api/konsultasi/5"},"status":"Not Found","code":404,"_postman_previewlanguage":null,"header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"58"},{"key":"ETag","value":"W/\"3a-lODc6Z+nOtnf4upbB6k38tPn+TM\""},{"key":"Date","value":"Wed, 29 Apr 2026 07:42:50 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Failed\",\n    \"message\": \"Konsultasi tidak ditemukan\"\n}"}],"_postman_id":"7a8b962e-4d84-4ca6-8e1e-332c0fd06e94"},{"name":"edit jadwal konsultasi","id":"c786aad4-5c26-432e-9071-ab51492d0c53","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"status\": \"approved\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:3000/api/konsultasi/7","urlObject":{"path":["7"],"host":["http://localhost:3000/api/konsultasi"],"query":[],"variable":[]}},"response":[{"id":"38c2a3dd-919b-4f19-a070-98ad6e72d244","name":"200 OK","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"status\": \"approved\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:3000/api/konsultasi/7"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"61"},{"key":"ETag","value":"W/\"3d-j5PG8AFAh2Y1voBwHLHmF10QxX0\""},{"key":"Date","value":"Wed, 29 Apr 2026 07:59:22 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Success\",\n    \"message\": \"Konsultasi berhasil diupdate\"\n}"},{"id":"3a01fc2f-cf81-4ffb-995a-db9cdf611ac3","name":"404 Not Found","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"status\": \"rejected\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:3000/api/konsultasi/5"},"status":"Not Found","code":404,"_postman_previewlanguage":null,"header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"58"},{"key":"ETag","value":"W/\"3a-lODc6Z+nOtnf4upbB6k38tPn+TM\""},{"key":"Date","value":"Wed, 29 Apr 2026 07:43:02 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Failed\",\n    \"message\": \"Konsultasi tidak ditemukan\"\n}"}],"_postman_id":"c786aad4-5c26-432e-9071-ab51492d0c53"},{"name":"delete jadwal konsultasi","id":"50cf3ea6-70d0-4ebf-b433-add0a96e7b59","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"http://localhost:3000/api/konsultasi/7","urlObject":{"path":["7"],"host":["http://localhost:3000/api/konsultasi"],"query":[],"variable":[]}},"response":[{"id":"3fd4eaf6-8786-47ab-8059-d1c65441cd07","name":"200 OK","originalRequest":{"method":"DELETE","header":[],"url":"http://localhost:3000/api/konsultasi/7"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"60"},{"key":"ETag","value":"W/\"3c-DTDRfXi2i6nYj1Svauj1VDqlRl0\""},{"key":"Date","value":"Wed, 29 Apr 2026 07:59:52 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Success\",\n    \"message\": \"Konsultasi berhasil dihapus\"\n}"},{"id":"25b6c6cb-b340-4566-9f8d-1e3f34dfd11f","name":"404 Not Found","originalRequest":{"method":"DELETE","header":[],"url":"http://localhost:3000/api/konsultasi/3"},"status":"Not Found","code":404,"_postman_previewlanguage":null,"header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"58"},{"key":"ETag","value":"W/\"3a-lODc6Z+nOtnf4upbB6k38tPn+TM\""},{"key":"Date","value":"Wed, 29 Apr 2026 07:43:15 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Failed\",\n    \"message\": \"Konsultasi tidak ditemukan\"\n}"}],"_postman_id":"50cf3ea6-70d0-4ebf-b433-add0a96e7b59"}],"id":"fe0ac280-2d4c-47d2-9dc4-1872ae8ebda5","description":"<p>Contains all endpoints related to the <strong>Konsultasi Service</strong> microservice. This service manages academic consultation scheduling between students and lecturers. Includes endpoints to retrieve all consultation schedules, fetch a consultation by ID, create a new consultation session, update an existing session, and delete a session. Base URL: <code>http://localhost:3000/api/konsultasi</code>.</p>\n","_postman_id":"fe0ac280-2d4c-47d2-9dc4-1872ae8ebda5"}],"event":[{"listen":"prerequest","script":{"id":"87b42f4e-dbf9-4e5d-9e89-0274efb8c06c","type":"text/javascript","packages":{},"requests":{},"exec":[""]}},{"listen":"test","script":{"id":"100cc771-b997-4359-b428-a31e0a8194d1","type":"text/javascript","packages":{},"requests":{},"exec":[""]}}],"variable":[{"key":"user_url","value":"http://127.0.0.1:8000/api"},{"key":"jadwal_url","value":"http://127.0.0.1:8001/api"},{"key":"konsultasi_url","value":"http://localhost:3000/api/konsultasi"}]}