{"info":{"_postman_id":"d09f1a77-6202-4537-94d0-ec9bd3b54efe","name":"FIlmesAPI","description":"<html><head></head><body><p>A API permite catalogar filmes, consultar informações detalhadas e obter estatísticas para análises. É ideal para quem deseja organizar uma coleção de filmes, realizar buscas por ano de lançamento, e obter dados para dashboards ou recomendações baseadas gênero, avaliação IMDb etc.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"47021881","collectionId":"d09f1a77-6202-4537-94d0-ec9bd3b54efe","publishedId":"2sB3HnJKWg","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2025-09-08T16:55:57.000Z"},"item":[{"name":"Adicionar filme","id":"e6ec40a0-acde-48a3-8bfb-0aacad9e9cab","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"titulo\": \"Ratatouille\",\r\n    \"genero\": \"Animação\",\r\n    \"duracao\": 111,\r\n    \"diretor\": \"Brad Bird\",\r\n    \"anoLancamento\": 2007,\r\n    \"pais\": \"EUA\",\r\n    \"imdb\": 8.1\r\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:8080/filmes","urlObject":{"path":["filmes"],"host":["http://localhost:8080"],"query":[],"variable":[]}},"response":[],"_postman_id":"e6ec40a0-acde-48a3-8bfb-0aacad9e9cab"},{"name":"Listar todos filmes","event":[{"listen":"test","script":{"id":"5dc56c99-49e9-4c76-9f3a-d7218c899ada","exec":["var template = `\r","<style type=\"text/css\">\r","    .tftable {font-size:14px;color:#333333;width:100%;border-width: 1px;border-color: #87ceeb;border-collapse: collapse;}\r","    .tftable th {font-size:18px;background-color:#87ceeb;border-width: 1px;padding: 8px;border-style: solid;border-color: #87ceeb;text-align:left;}\r","    .tftable tr {background-color:#ffffff;}\r","    .tftable td {font-size:14px;border-width: 1px;padding: 8px;border-style: solid;border-color: #87ceeb;}\r","    .tftable tr:hover {background-color:#e0ffff;}\r","</style>\r","\r","<table class=\"tftable\" border=\"1\">\r","    <tr>\r","        <th>Título</th>\r","        <th>Gênero</th>\r","        <th>Duração</th>\r","        <th>Diretor</th>\r","        <th>Ano de Lançamento</th>\r","        <th>País</th>\r","        <th>IMDB</th>\r","    </tr>\r","    \r","    {{#each response}}\r","        <tr>\r","            <td>{{titulo}}</td>\r","            <td>{{genero}}</td>\r","            <td>{{duracao}}</td>\r","            <td>{{diretor}}</td>\r","            <td>{{anoLancamento}}</td>\r","            <td>{{pais}}</td>\r","            <td>{{imdb}}</td>\r","        </tr>\r","    {{/each}}\r","</table>\r","`;\r","\r","function constructVisualizerPayload() {\r","    return {response: pm.response.json()}\r","}\r","\r","pm.visualizer.set(template, constructVisualizerPayload());"],"type":"text/javascript","packages":{}}}],"id":"a5e9d917-68cd-417a-9633-7ecfef371a34","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"http://localhost:8080/filmes","urlObject":{"path":["filmes"],"host":["http://localhost:8080"],"query":[],"variable":[]}},"response":[],"_postman_id":"a5e9d917-68cd-417a-9633-7ecfef371a34"},{"name":"Listar filme por ID","id":"103a9761-9bd6-42af-96d0-058a53b32cab","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"http://localhost:8080/filmes/1","urlObject":{"path":["filmes","1"],"host":["http://localhost:8080"],"query":[],"variable":[]}},"response":[],"_postman_id":"103a9761-9bd6-42af-96d0-058a53b32cab"},{"name":"Deletar filme por ID","id":"1a12354e-9587-409c-9e74-3451f3510d19","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"DELETE","header":[],"body":{"mode":"raw","raw":""},"url":"http://localhost:8080/filmes/3","urlObject":{"path":["filmes","3"],"host":["http://localhost:8080"],"query":[],"variable":[]}},"response":[],"_postman_id":"1a12354e-9587-409c-9e74-3451f3510d19"},{"name":"Atualizar filme","id":"5b6d95aa-6dd5-4805-bfbd-5ebbe232291a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"titulo\": \"Ratatouille\",\r\n    \"genero\": \"Drama\",\r\n    \"duracao\": 99,\r\n    \"diretor\": \"Michael Bay\",\r\n    \"anoLancamento\": 2003,\r\n    \"pais\": \"EUA\",\r\n    \"imdb\": 9\r\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:8080/filmes/5","urlObject":{"path":["filmes","5"],"host":["http://localhost:8080"],"query":[],"variable":[]}},"response":[],"_postman_id":"5b6d95aa-6dd5-4805-bfbd-5ebbe232291a"},{"name":"Listar por ano","id":"85375470-1d71-43ad-99fe-04df63192abe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"2007","options":{"raw":{"language":"json"}}},"url":"http://localhost:8080/filmes/ano/2007","urlObject":{"path":["filmes","ano","2007"],"host":["http://localhost:8080"],"query":[],"variable":[]}},"response":[],"_postman_id":"85375470-1d71-43ad-99fe-04df63192abe"},{"name":"Total Filmes","id":"3585bc6c-25da-4da5-8fc8-4c1aa131106b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:8080/filmes/total","urlObject":{"path":["filmes","total"],"host":["http://localhost:8080"],"query":[],"variable":[]}},"response":[],"_postman_id":"3585bc6c-25da-4da5-8fc8-4c1aa131106b"}],"variable":[{"key":"localhost","value":"http://localhost:8080","type":"default"}]}