33
loading...
This website collects cookies to deliver better user experience
REQUEST
METHOD: GET
URL: localhost:8080/livros/42
RESPONSE
{
"id": 42,
"nome": "Quadribol através dos séculos",
"autor": "Kennilworthy Whisp"
}
REQUEST
METHOD: GET
URL: localhost:8080/livros
RESPONSE
[
{
"id": 42,
"nome": "Quadribol através dos séculos",
"autor": "Kennilworthy Whisp"
},
{
"id": 66,
"nome": "Animais Fantásticos e Onde Habitam",
"autor": "Newt Scamander"
},
... Mais e mais livros ...
]
REQUEST
METHOD: GET
URL: localhost:8080/jarras/567/conteudo
RESPONSE
{}
REQUEST
METHOD: POST
CONTENT: {"quantidade":"500ml", "tipo":"Água"}
URL: localhost:8080/jarras/567/conteudo
REQUEST
METHOD: GET
URL: localhost:8080/jarras/567/conteudo
RESPONSE
{
"id": 1,
"quantidade": "500ml",
"tipo": "Água"
}
REQUEST
METHOD: GET
URL: localhost:8080/professores/minerva/materiais/47
RESPONSE
{
"id": 47,
"cor": "Preto e Branco",
"altura": "63cm",
"peso": "2kg",
"superficie": "Penas"
}
REQUEST
METHOD: PUT
CONTENT: {"cor": "Transparente", "altura": "30cm",
"peso", "85g", "superficie": "Vidro"}
URL: localhost:8080/professores/minerva/materiais/47
REQUEST
METHOD: GET
URL: localhost:8080/professores/minerva/materiais/47
RESPONSE
{
"id": 47,
"cor": "Transparente",
"altura": "30cm",
"peso": "85g",
"superficie": "Vidro"
}
REQUEST
METHOD: GET
URL: localhost:8080/alunos/harry-potter/oculos/123
RESPONSE
{
"id": 123,
"dono": "Harry Potter",
"cor": "Preto",
"armacao": "Redonda",
"situacao": "Quebrado"
}
REQUEST
METHOD: PATCH
CONTENT: {"situacao":"Consertado"}
URL: locahost:8080/alunos/harry-potter/oculos/123
REQUEST
METHOD: GET
URL: localhost:8080/alunos/harry-potter/oculos/123
RESPONSE
{
"id": 123,
"dono": "Harry Potter",
"cor": "Preto",
"armacao": "Redonda",
"situacao": "Consertado"
}
REQUEST
METHOD: GET
URL: localhost:8080/horcruxes/8
RESPONSE
{
"id": 8,
"tipo": "Nokia Tijolão",
"local": "Osasco"
}
REQUEST
METHOD: DELETE
URL: localhost:8080/horcruxes/8
REQUEST
METHOD: GET
URL: localhost:8080/horcruxes/8
RESPONSE
{}
33