{"info":{"_postman_id":"5985b084-2417-4cbe-98a6-a45c09e0f96d","name":"Repipe","description":"<html><head></head><body><p>Documentação estática da API criada pelo grupo Repipe.<br>As APIs estão divididas em 5 pastas, cada uma referente ao CRUD de uma tabela. Sendo essas: Usuários, Quadrantes, Zonas de Quadrante, Reboilers e Refinarias.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"30920057","collectionId":"5985b084-2417-4cbe-98a6-a45c09e0f96d","publishedId":"2sA3XLEPYY","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2024-06-09T23:36:34.000Z"},"item":[{"name":"Usuários","item":[{"name":"createUser","id":"8e9790b4-cc70-4525-bcbe-04f26d8b5b01","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"user_email\": \"string\",\r\n  \"user_password\": \"string\",\r\n  \"user_role\": 0,\r\n  \"user_name\": \"string\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://127.0.0.1:8000/createUser","description":"<p>Endpoint utilizado para registrar um usuário novo, tendo como campos:<br />user_email: email do usuário</p>\n<p>user_password: senha do usuário</p>\n<p>user_role: nível de permissão do usuário</p>\n<p>user_name: nome do usuário</p>\n","urlObject":{"protocol":"http","port":"8000","path":["createUser"],"host":["127","0","0","1"],"query":[],"variable":[]}},"response":[{"id":"161528f4-4430-4ee2-be1f-1db0a0a55981","name":"exemplo","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"user_email\": \"string\",\r\n  \"user_password\": \"string\",\r\n  \"user_role\": 0,\r\n  \"user_name\": \"string\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://127.0.0.1:8000/createUser"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"date","value":"Mon, 10 Jun 2024 02:08:24 GMT"},{"key":"server","value":"uvicorn"},{"key":"content-length","value":"53"},{"key":"content-type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Usuário Criado com Sucesso\",\n    \"user_id\": 1\n}"}],"_postman_id":"8e9790b4-cc70-4525-bcbe-04f26d8b5b01"},{"name":"getUsers","id":"456b6418-447c-450d-b43b-f404234ed8a8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://127.0.0.1:8000/getUsers","description":"<p>Endpoint utilizado para coletar os dados de todos os usuários cadastrados, retorna um array \"users\" que contém os dados de todos os usuários cadastrados.</p>\n","urlObject":{"protocol":"http","port":"8000","path":["getUsers"],"host":["127","0","0","1"],"query":[],"variable":[]}},"response":[{"id":"bf16e3e6-d4ff-4ca7-8fac-7532ce42a6eb","name":"exemplo","originalRequest":{"method":"GET","header":[],"url":"http://127.0.0.1:8000/getUsers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"date","value":"Mon, 10 Jun 2024 02:09:36 GMT"},{"key":"server","value":"uvicorn"},{"key":"content-length","value":"44"},{"key":"content-type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"users\": [\n        [\n            1,\n            \"string\",\n            \"string\",\n            0,\n            \"string\"\n        ]\n    ]\n}"}],"_postman_id":"456b6418-447c-450d-b43b-f404234ed8a8"},{"name":"getUser/{user_id}","id":"85cf0cbe-64f9-4c90-bf12-b8ccfdbfba97","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"description":"<p>Endpoint utilizado para acessar todas as informações a respeito do usuário de id igual a {user_id}</p>\n","urlObject":{"query":[],"variable":[]},"url":""},"response":[{"id":"97b25169-6a57-406a-951b-e1e407d42790","name":"exemplo","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"http://127.0.0.1:8000/getUser/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"date","value":"Mon, 10 Jun 2024 02:26:24 GMT"},{"key":"server","value":"uvicorn"},{"key":"content-length","value":"41"},{"key":"content-type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"user\": [\n        1,\n        \"string\",\n        \"string\",\n        0,\n        \"string\"\n    ]\n}"}],"_postman_id":"85cf0cbe-64f9-4c90-bf12-b8ccfdbfba97"},{"name":"updateUser/{user_id}","id":"76ceb992-d14f-4bcf-8639-e37f716e65df","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n  \"user_email\": \"novo_email\",\r\n  \"user_password\": \"nova_senha\",\r\n  \"user_role\": 1,\r\n  \"user_name\": \"novo_user\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://127.0.0.1:8000/updateUser/1","description":"<p>Endpoint utilizado para atualizar as informações referente ao usuário de id igual a {user_id}</p>\n","urlObject":{"protocol":"http","port":"8000","path":["updateUser","1"],"host":["127","0","0","1"],"query":[],"variable":[]}},"response":[{"id":"fe2b25d8-dc68-4238-84bc-a0b41fd176f9","name":"exemplo","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n  \"user_email\": \"novo_email\",\r\n  \"user_password\": \"nova_senha\",\r\n  \"user_role\": 1,\r\n  \"user_name\": \"novo_user\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://127.0.0.1:8000/updateUser/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"date","value":"Mon, 10 Jun 2024 02:30:05 GMT"},{"key":"server","value":"uvicorn"},{"key":"content-length","value":"45"},{"key":"content-type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Usuário atualizado com sucesso\"\n}"}],"_postman_id":"76ceb992-d14f-4bcf-8639-e37f716e65df"},{"name":"deleteUser/{user_id}","id":"b7d34662-b83c-493f-904d-453dd325959d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"http://127.0.0.1:8000/deleteUser/1","description":"<p>Endpoint utilizado para deleter as informações referente ao usuário de id igual a {user_id}</p>\n","urlObject":{"protocol":"http","port":"8000","path":["deleteUser","1"],"host":["127","0","0","1"],"query":[],"variable":[]}},"response":[{"id":"894ae853-45c1-4bf2-b8bf-a2eaccca2348","name":"exemplo","originalRequest":{"method":"DELETE","header":[],"url":"http://127.0.0.1:8000/deleteUser/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"date","value":"Mon, 10 Jun 2024 02:34:20 GMT"},{"key":"server","value":"uvicorn"},{"key":"content-length","value":"43"},{"key":"content-type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Usuário deletado com sucesso\"\n}"}],"_postman_id":"b7d34662-b83c-493f-904d-453dd325959d"}],"id":"6a330fd6-255f-47ab-afc4-3e5c3f77a3be","description":"<p>Endpoints Relacionados a registro e consulta de usuários</p>\n","_postman_id":"6a330fd6-255f-47ab-afc4-3e5c3f77a3be"},{"name":"Quadrantes","item":[{"name":"createQuadrant","id":"1c946691-1c62-48ba-a9f8-8177bd97ad07","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"quadrant_position\": 0,\r\n  \"quadrant_status\": \"string\",\r\n  \"reboiler_id\": 0\r\n}","options":{"raw":{"language":"json"}}},"url":"http://127.0.0.1:8000/createQuadrant","description":"<p>Endpoint utilizado para a criação de um quadrante, todo quadrante está linkado a um reboiler</p>\n","urlObject":{"protocol":"http","port":"8000","path":["createQuadrant"],"host":["127","0","0","1"],"query":[],"variable":[]}},"response":[{"id":"1a60e758-d1bc-4770-855f-ebda108949a9","name":"exemplo","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"quadrant_position\": 0,\r\n  \"quadrant_status\": \"string\",\r\n  \"reboiler_id\": 0\r\n}","options":{"raw":{"language":"json"}}},"url":"http://127.0.0.1:8000/createQuadrant"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"date","value":"Mon, 10 Jun 2024 12:59:57 GMT"},{"key":"server","value":"uvicorn"},{"key":"content-length","value":"46"},{"key":"content-type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Quadrant created\",\n    \"quadrant_id\": 1\n}"}],"_postman_id":"1c946691-1c62-48ba-a9f8-8177bd97ad07"},{"name":"getQuadrants","id":"bca10464-dd65-4fcb-9898-c271923c5996","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://127.0.0.1:8000/getQuadrants","description":"<p>Endpoint utilizado para obter as informações de todos os quadrantes registrados</p>\n","urlObject":{"protocol":"http","port":"8000","path":["getQuadrants"],"host":["127","0","0","1"],"query":[],"variable":[]}},"response":[{"id":"65fe401e-45a9-4451-8131-625e08bf2a95","name":"exemplo","originalRequest":{"method":"GET","header":[],"url":"http://127.0.0.1:8000/getQuadrants"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"date","value":"Mon, 10 Jun 2024 13:16:54 GMT"},{"key":"server","value":"uvicorn"},{"key":"content-length","value":"117"},{"key":"content-type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"quadrants\": [\n        [\n            1,\n            0,\n            \"string\",\n            0\n        ],\n        [\n            2,\n            0,\n            \"string\",\n            0\n        ],\n        [\n            3,\n            0,\n            \"string\",\n            0\n        ],\n        [\n            4,\n            0,\n            \"string\",\n            0\n        ],\n        [\n            5,\n            0,\n            \"string\",\n            0\n        ],\n        [\n            6,\n            0,\n            \"string\",\n            0\n        ]\n    ]\n}"}],"_postman_id":"bca10464-dd65-4fcb-9898-c271923c5996"},{"name":"getQuadrant/{quadrant_id}","id":"b2fae607-b71f-4ea3-af45-fa0778e478b0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://127.0.0.1:8000/getQuadrant/1","description":"<p>Endpoint utilizado para obter as informações específicas do quadrante de id igual a {quadrant_id}</p>\n","urlObject":{"protocol":"http","port":"8000","path":["getQuadrant","1"],"host":["127","0","0","1"],"query":[],"variable":[]}},"response":[{"id":"8270efc7-a4df-4ae6-951f-68226d7a2818","name":"exemplo","originalRequest":{"method":"GET","header":[],"url":"http://127.0.0.1:8000/getQuadrant/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"date","value":"Mon, 10 Jun 2024 13:04:49 GMT"},{"key":"server","value":"uvicorn"},{"key":"content-length","value":"29"},{"key":"content-type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"quadrant\": [\n        1,\n        0,\n        \"string\",\n        0\n    ]\n}"}],"_postman_id":"b2fae607-b71f-4ea3-af45-fa0778e478b0"},{"name":"updateQuadrant/{quadrant_id}","id":"012c6844-f24c-4310-b45e-2bc9a9104837","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"quadrant_position\": 1,\r\n  \"quadrant_status\": \"sujo\",\r\n  \"reboiler_id\": 2\r\n}","options":{"raw":{"language":"json"}}},"url":"http://127.0.0.1:8000/updateQuadrant/1","description":"<p>Endpoint utilizado para atualizar as informações do quadrante de id igual a {quadrant_id}</p>\n","urlObject":{"protocol":"http","port":"8000","path":["updateQuadrant","1"],"host":["127","0","0","1"],"query":[],"variable":[]}},"response":[{"id":"db838f80-a79a-43b7-a204-e49e7d36d844","name":"exemplo","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"quadrant_position\": 1,\r\n  \"quadrant_status\": \"sujo\",\r\n  \"reboiler_id\": 2\r\n}","options":{"raw":{"language":"json"}}},"url":"http://127.0.0.1:8000/updateQuadrant/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"date","value":"Mon, 10 Jun 2024 13:05:55 GMT"},{"key":"server","value":"uvicorn"},{"key":"content-length","value":"30"},{"key":"content-type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Quadrant updated\"\n}"}],"_postman_id":"012c6844-f24c-4310-b45e-2bc9a9104837"},{"name":"deleteQuadrant/{quadrant_id}","id":"c45d1507-c1a7-49e1-b929-96dd9509aee8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"http://127.0.0.1:8000/deleteQuadrant/1","urlObject":{"protocol":"http","port":"8000","path":["deleteQuadrant","1"],"host":["127","0","0","1"],"query":[],"variable":[]}},"response":[{"id":"7eebe7b5-4dbc-45ed-994b-aa7a680b0816","name":"exemplo","originalRequest":{"method":"DELETE","header":[],"url":"http://127.0.0.1:8000/deleteQuadrant/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"date","value":"Mon, 10 Jun 2024 13:08:07 GMT"},{"key":"server","value":"uvicorn"},{"key":"content-length","value":"30"},{"key":"content-type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Quadrant deleted\"\n}"}],"_postman_id":"c45d1507-c1a7-49e1-b929-96dd9509aee8"}],"id":"a3a74aea-b21f-4699-8d18-d9fd36eec403","description":"<p>Endpoints relacionados a registro e consulta de quadrantes de um reboiler</p>\n","_postman_id":"a3a74aea-b21f-4699-8d18-d9fd36eec403"},{"name":"Zonas de Quadrante","item":[{"name":"createQuadrantZone","id":"2b5d4714-207e-4e39-a4ad-51df81a3ba37","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"zone_area\": 0,\r\n  \"zone_status\": 0,\r\n  \"quadrant_id\": 0\r\n}","options":{"raw":{"language":"json"}}},"url":"http://127.0.0.1:8000/createQuadrantZone","description":"<p>Endpoint utilizado para a criação de zonas de um quadrante. Todas as zonas tem um atributo \"quadrant_id\" que indica à qual quadrante essa zona pertence.</p>\n","urlObject":{"protocol":"http","port":"8000","path":["createQuadrantZone"],"host":["127","0","0","1"],"query":[],"variable":[]}},"response":[{"id":"e3144c6e-3075-469f-96f7-d8f24b0a8619","name":"exemplo","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"zone_area\": 0,\r\n  \"zone_status\": 0,\r\n  \"quadrant_id\": 0\r\n}","options":{"raw":{"language":"json"}}},"url":"http://127.0.0.1:8000/createQuadrantZone"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"date","value":"Mon, 10 Jun 2024 13:19:15 GMT"},{"key":"server","value":"uvicorn"},{"key":"content-length","value":"47"},{"key":"content-type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Quadrant Zone created\",\n    \"zone_id\": 1\n}"}],"_postman_id":"2b5d4714-207e-4e39-a4ad-51df81a3ba37"},{"name":"getQuadrantZones","id":"b193256e-9e40-47b0-a03a-15b780749bb1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"description":"<p>Endpoint utilizado para obter as informações de todas as zonas de todos os quadrantes.</p>\n","urlObject":{"query":[],"variable":[]},"url":""},"response":[{"id":"c88167e0-a9a1-49e9-812b-2c128c1952b7","name":"exemplo","originalRequest":{"method":"GET","header":[],"url":"http://127.0.0.1:8000/getQuadrantZones"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"date","value":"Mon, 10 Jun 2024 13:20:07 GMT"},{"key":"server","value":"uvicorn"},{"key":"content-length","value":"90"},{"key":"content-type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"quadrant_zones\": [\n        [\n            1,\n            0,\n            0,\n            0\n        ],\n        [\n            2,\n            0,\n            0,\n            0\n        ],\n        [\n            3,\n            0,\n            0,\n            0\n        ],\n        [\n            4,\n            0,\n            0,\n            0\n        ],\n        [\n            5,\n            0,\n            0,\n            0\n        ],\n        [\n            6,\n            0,\n            0,\n            0\n        ],\n        [\n            7,\n            0,\n            0,\n            0\n        ]\n    ]\n}"}],"_postman_id":"b193256e-9e40-47b0-a03a-15b780749bb1"},{"name":"getQuadrantZone/{zone_id}","id":"b8d4e7ba-7d73-4251-8934-04f564c64650","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://127.0.0.1:8000/getQuadrantZone/1","description":"<p>Endpoint utilizado para obter as informações específicas de uma zona de id igual a {zone_id}</p>\n","urlObject":{"protocol":"http","port":"8000","path":["getQuadrantZone","1"],"host":["127","0","0","1"],"query":[],"variable":[]}},"response":[{"id":"682ec737-e458-42a8-94d4-3c19ab798b54","name":"exemplo","originalRequest":{"method":"GET","header":[],"url":"http://127.0.0.1:8000/getQuadrantZone/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"date","value":"Mon, 10 Jun 2024 13:22:20 GMT"},{"key":"server","value":"uvicorn"},{"key":"content-length","value":"27"},{"key":"content-type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"quadrant_zone\": [\n        1,\n        0,\n        0,\n        0\n    ]\n}"}],"_postman_id":"b8d4e7ba-7d73-4251-8934-04f564c64650"},{"name":"updateQuadrantZone/{zone_id}","id":"b3d003d7-33b9-45ab-a3a4-a1b8b3abb60f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n  \"zone_area\": 1,\r\n  \"zone_status\": 3,\r\n  \"quadrant_id\": 4\r\n}","options":{"raw":{"language":"json"}}},"url":"http://127.0.0.1:8000/updateQuadrantZone/1","description":"<p>Endpoint utilizado para atualizar as informações referentes a zona de id igual a {zone_id}</p>\n","urlObject":{"protocol":"http","port":"8000","path":["updateQuadrantZone","1"],"host":["127","0","0","1"],"query":[],"variable":[]}},"response":[{"id":"8003b38e-008a-4850-aa0e-9f2dd092493f","name":"exemplo","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n  \"zone_area\": 1,\r\n  \"zone_status\": 3,\r\n  \"quadrant_id\": 4\r\n}","options":{"raw":{"language":"json"}}},"url":"http://127.0.0.1:8000/updateQuadrantZone/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"date","value":"Mon, 10 Jun 2024 13:26:10 GMT"},{"key":"server","value":"uvicorn"},{"key":"content-length","value":"35"},{"key":"content-type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Quadrant Zone updated\"\n}"}],"_postman_id":"b3d003d7-33b9-45ab-a3a4-a1b8b3abb60f"},{"name":"deleteQuadrantZone/{zone_id}","id":"b0ed66f0-b4d0-41e6-a07f-44910a59af69","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"http://127.0.0.1:8000/deleteQuadrantZone/1","description":"<p>Endpoint utilizado para deletar o registro de uma zona de id igual a {zone_id}</p>\n","urlObject":{"protocol":"http","port":"8000","path":["deleteQuadrantZone","1"],"host":["127","0","0","1"],"query":[],"variable":[]}},"response":[{"id":"251b3229-2f69-4aa2-abcf-d87cfe79c403","name":"exemplo","originalRequest":{"method":"DELETE","header":[],"url":"http://127.0.0.1:8000/deleteQuadrantZone/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"date","value":"Mon, 10 Jun 2024 13:27:42 GMT"},{"key":"server","value":"uvicorn"},{"key":"content-length","value":"35"},{"key":"content-type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Quadrant Zone deleted\"\n}"}],"_postman_id":"b0ed66f0-b4d0-41e6-a07f-44910a59af69"}],"id":"e41cf398-7d95-4da0-9e02-334a2bf54cc0","description":"<p>Todos os endpoints referentes a zonas de quadrantes de um reboiler.</p>\n","_postman_id":"e41cf398-7d95-4da0-9e02-334a2bf54cc0"},{"name":"Reboilers","item":[{"name":"createReboiler","id":"768633bf-f57d-4bc2-a0be-87131ca5e9d9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"num_pipes\": 0,\r\n  \"status\": \"string\",\r\n  \"refinery_id\": 0\r\n}","options":{"raw":{"language":"json"}}},"url":"http://127.0.0.1:8000/createReboiler","description":"<p>Endpoint utilizado para a criação de um reboiler, onde refinery_id é igual ao id da refinaria que contém este reboiler.</p>\n","urlObject":{"protocol":"http","port":"8000","path":["createReboiler"],"host":["127","0","0","1"],"query":[],"variable":[]}},"response":[{"id":"e1db6c45-1979-4662-b82e-3e186fc39c35","name":"exemplo","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"num_pipes\": 0,\r\n  \"status\": \"string\",\r\n  \"refinery_id\": 0\r\n}","options":{"raw":{"language":"json"}}},"url":"http://127.0.0.1:8000/createReboiler"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"date","value":"Mon, 10 Jun 2024 16:06:40 GMT"},{"key":"server","value":"uvicorn"},{"key":"content-length","value":"46"},{"key":"content-type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Reboiler created\",\n    \"reboiler_id\": 1\n}"}],"_postman_id":"768633bf-f57d-4bc2-a0be-87131ca5e9d9"},{"name":"getReboilers","id":"ea4b8f95-dac9-49f4-8a63-e69d5c1e4976","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://127.0.0.1:8000/getReboilers","description":"<p>Endpoint utilizado para pegar as informações referentes a todos os reboilers cadastrados.</p>\n","urlObject":{"protocol":"http","port":"8000","path":["getReboilers"],"host":["127","0","0","1"],"query":[],"variable":[]}},"response":[{"id":"21308e67-a4c4-439e-8171-93017128765a","name":"exemplo","originalRequest":{"method":"GET","header":[],"url":"http://127.0.0.1:8000/getReboilers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"date","value":"Mon, 10 Jun 2024 16:09:20 GMT"},{"key":"server","value":"uvicorn"},{"key":"content-length","value":"100"},{"key":"content-type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"reboilers\": [\n        [\n            1,\n            0,\n            0,\n            \"string\"\n        ],\n        [\n            2,\n            0,\n            0,\n            \"string\"\n        ],\n        [\n            3,\n            0,\n            0,\n            \"string\"\n        ],\n        [\n            4,\n            0,\n            0,\n            \"string\"\n        ],\n        [\n            5,\n            0,\n            0,\n            \"string\"\n        ]\n    ]\n}"}],"_postman_id":"ea4b8f95-dac9-49f4-8a63-e69d5c1e4976"},{"name":"getReboiler/{reboiler_id}","id":"64a41136-db36-4433-942d-a7e1a10b152b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"description":"<p>Endpoint utilizado para pegar a informação específica do reboiler de id igual a {reboiler_id}</p>\n","urlObject":{"query":[],"variable":[]},"url":""},"response":[{"id":"4f928082-5a64-47b1-9926-c01db4061584","name":"exemplo","originalRequest":{"method":"GET","header":[],"url":"http://127.0.0.1:8000/getReboiler/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"date","value":"Mon, 10 Jun 2024 16:07:52 GMT"},{"key":"server","value":"uvicorn"},{"key":"content-length","value":"29"},{"key":"content-type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"reboiler\": [\n        1,\n        0,\n        0,\n        \"string\"\n    ]\n}"}],"_postman_id":"64a41136-db36-4433-942d-a7e1a10b152b"},{"name":"updateReboiler/{reboiler_id}","id":"31b0bada-9a52-4f2a-850c-41e89d8a69b4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n  \"num_pipes\": 32,\r\n  \"status\": \"sujo\",\r\n  \"refinery_id\": 0\r\n}","options":{"raw":{"language":"json"}}},"url":"http://127.0.0.1:8000/updateReboiler/1","description":"<p>Endpoint utilizado para atualizar as informações referentes ao reboiler de id igual a {reboiler_id}</p>\n","urlObject":{"protocol":"http","port":"8000","path":["updateReboiler","1"],"host":["127","0","0","1"],"query":[],"variable":[]}},"response":[{"id":"e0c615b4-405c-45fc-ba6a-d6a839ad9434","name":"exemplo","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n  \"num_pipes\": 32,\r\n  \"status\": \"sujo\",\r\n  \"refinery_id\": 0\r\n}","options":{"raw":{"language":"json"}}},"url":"http://127.0.0.1:8000/updateReboiler/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"date","value":"Mon, 10 Jun 2024 16:13:08 GMT"},{"key":"server","value":"uvicorn"},{"key":"content-length","value":"30"},{"key":"content-type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Reboiler updated\"\n}"}],"_postman_id":"31b0bada-9a52-4f2a-850c-41e89d8a69b4"},{"name":"deleteReboiler/{reboiler_id}","id":"658c7fc0-650a-4b96-942f-aaff314743db","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"http://127.0.0.1:8000/deleteReboiler/1","description":"<p>Endpoint utilizado para deletar o registro do reboiler de id igual a {reboiler_id}</p>\n","urlObject":{"protocol":"http","port":"8000","path":["deleteReboiler","1"],"host":["127","0","0","1"],"query":[],"variable":[]}},"response":[{"id":"a0e4ab2b-8a69-4ec8-b80c-963d3bb3751f","name":"exemplo","originalRequest":{"method":"DELETE","header":[],"url":"http://127.0.0.1:8000/deleteReboiler/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"date","value":"Mon, 10 Jun 2024 16:14:13 GMT"},{"key":"server","value":"uvicorn"},{"key":"content-length","value":"30"},{"key":"content-type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Reboiler deleted\"\n}"}],"_postman_id":"658c7fc0-650a-4b96-942f-aaff314743db"}],"id":"0a784c1c-8c88-407d-ba7f-10e10f5b3353","description":"<p>Endpoints referentes a todas as informações de um reboiler</p>\n","_postman_id":"0a784c1c-8c88-407d-ba7f-10e10f5b3353"},{"name":"Refinarias","item":[{"name":"createRefinary","id":"ca69b6f9-a16d-4da3-ac61-05fbf95a35cc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"location\": \"string\",\r\n  \"num_reboilers\": 0,\r\n  \"name\": \"string\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://127.0.0.1:8000/createRefinary","description":"<p>Endpoint utilizado para registrar uma nova refinaria.</p>\n","urlObject":{"protocol":"http","port":"8000","path":["createRefinary"],"host":["127","0","0","1"],"query":[],"variable":[]}},"response":[{"id":"ceaa6438-6b0f-4e50-8488-267a681210b1","name":"exemplo","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"location\": \"string\",\r\n  \"num_reboilers\": 0,\r\n  \"name\": \"string\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://127.0.0.1:8000/createRefinary"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"date","value":"Mon, 10 Jun 2024 18:02:36 GMT"},{"key":"server","value":"uvicorn"},{"key":"content-length","value":"46"},{"key":"content-type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Refinary created\",\n    \"refinary_id\": 1\n}"}],"_postman_id":"ca69b6f9-a16d-4da3-ac61-05fbf95a35cc"},{"name":"getRefinaries","id":"dc2ae285-fe62-4d79-a236-3a00ef6ad05a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"description":"<p>Endpoint utilizado para pegar as informações referentes a todas as refinarias</p>\n","urlObject":{"query":[],"variable":[]},"url":""},"response":[{"id":"7e32f2b1-9b0d-4322-a04a-b15f4d8f70eb","name":"exemplo","originalRequest":{"method":"GET","header":[],"url":"http://127.0.0.1:8000/getRefinaries"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"date","value":"Mon, 10 Jun 2024 18:03:22 GMT"},{"key":"server","value":"uvicorn"},{"key":"content-length","value":"136"},{"key":"content-type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"refinaries\": [\n        [\n            1,\n            \"string\",\n            0,\n            \"string\"\n        ],\n        [\n            2,\n            \"string\",\n            0,\n            \"string\"\n        ],\n        [\n            3,\n            \"string\",\n            0,\n            \"string\"\n        ],\n        [\n            4,\n            \"string\",\n            0,\n            \"string\"\n        ],\n        [\n            5,\n            \"string\",\n            0,\n            \"string\"\n        ]\n    ]\n}"}],"_postman_id":"dc2ae285-fe62-4d79-a236-3a00ef6ad05a"},{"name":"getRefinary/{refinary_id}","id":"9159b4d8-c4e0-4249-9b32-6786a32e1115","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"description":"<p>Endpoint utilizado para pegar as informações referentes a refinaria de id igual a {refinary_id}</p>\n","urlObject":{"query":[],"variable":[]},"url":""},"response":[{"id":"ffb9f593-1d15-45a5-baf7-7dc263758c65","name":"exemplo","originalRequest":{"method":"GET","header":[],"url":"http://127.0.0.1:8000/getRefinary/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"date","value":"Mon, 10 Jun 2024 18:03:44 GMT"},{"key":"server","value":"uvicorn"},{"key":"content-length","value":"36"},{"key":"content-type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"refinary\": [\n        1,\n        \"string\",\n        0,\n        \"string\"\n    ]\n}"}],"_postman_id":"9159b4d8-c4e0-4249-9b32-6786a32e1115"},{"name":"updateRefinary/{refinary_id}","id":"040e9c7e-e13a-45aa-b3c9-317014d6d99d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n  \"location\": \"Minas Gerais\",\r\n  \"num_reboilers\": 32,\r\n  \"name\": \"REFINARIA 1 - MG\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://127.0.0.1:8000/updateRefinary/1","description":"<p>Endpoint utilizado para atualizar as informações referentes a refinaria de id igual a {refinary_id}</p>\n","urlObject":{"protocol":"http","port":"8000","path":["updateRefinary","1"],"host":["127","0","0","1"],"query":[],"variable":[]}},"response":[{"id":"7a847544-9751-46af-877b-d72cea3e2fad","name":"exemplo","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n  \"location\": \"Minas Gerais\",\r\n  \"num_reboilers\": 32,\r\n  \"name\": \"REFINARIA 1 - MG\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://127.0.0.1:8000/updateRefinary/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"date","value":"Mon, 10 Jun 2024 18:05:00 GMT"},{"key":"server","value":"uvicorn"},{"key":"content-length","value":"30"},{"key":"content-type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Refinary updated\"\n}"}],"_postman_id":"040e9c7e-e13a-45aa-b3c9-317014d6d99d"},{"name":"deleteRefinary/{refinary_id}","id":"5b809ad0-d057-4774-94b7-2446328c3f8f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"http://127.0.0.1:8000/deleteRefinary/6","description":"<p>Endpoint utilizado para deletar o registro da refinaria de id igual a {refinary_id}</p>\n","urlObject":{"protocol":"http","port":"8000","path":["deleteRefinary","6"],"host":["127","0","0","1"],"query":[],"variable":[]}},"response":[{"id":"3d018675-5da2-4e1a-87ef-c2ee9e7114c4","name":"exemplo","originalRequest":{"method":"DELETE","header":[],"url":"http://127.0.0.1:8000/deleteRefinary/6"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"date","value":"Mon, 10 Jun 2024 18:05:55 GMT"},{"key":"server","value":"uvicorn"},{"key":"content-length","value":"30"},{"key":"content-type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Refinary deleted\"\n}"}],"_postman_id":"5b809ad0-d057-4774-94b7-2446328c3f8f"}],"id":"a00b611a-d84e-4e17-927e-d63628599785","description":"<p>Todos os endpoints relacionados ao registro de Refinarias</p>\n","_postman_id":"a00b611a-d84e-4e17-927e-d63628599785"}]}