O cliente desta aplicação está no repositório :
https://github.com/fernandoobarbosa/cliente-products-manager
assim como sua documentação
* Visual Studio 2019 16.8 ou posterior com a carga de trabalho ASP.NET desenvolvimento para a Web
* SDK do .NET 5,0 ou posterior
Exemplos de chamadas da API
GET api/Products/
curl --location --request GET 'https://localhost:44339/api/Products/'
[
{
"id": "60d9c58851794d90f0f1d75a",
"name": "MasterBall",
"price": 12344,
"description": "Master!",
"imageUrl": "https://smallimg.pngkey.com/png/small/156-1564817_master-ball-master-ball-pokemon-icon.png",
"tags": [
{
"name": "Master"
},
{
"name": "Bola"
}
]
},
{
"id": "60d9faf4327e63346711b2d8",
"name": "Pokebola",
"price": 1222,
"description": "Um belo produto",
"imageUrl": "https://gartic.com.br/imgs/mural/ca/carol4u/pokebola.png",
"tags": [
{
"name": "pokemon"
},
{
"name": "bola"
}
]
}
]
POST api/Products/
curl --location --request POST 'https://localhost:44339/api/Products' \
--header 'Content-Type: application/json' \
--data-raw '{
"name": "Pokebola",
"price": 1222,
"description": "Um belo produto",
"imageUrl": "https://gartic.com.br/imgs/mural/ca/carol4u/pokebola.png",
"tags": [
{
"name": "pokemon"
},
{
"name": "bola"
}
]
}'
{
"id": "60d9faf4327e63346711b2d8",
"name": "Pokebola",
"price": 1222,
"description": "Um belo produto",
"imageUrl": "https://gartic.com.br/imgs/mural/ca/carol4u/pokebola.png",
"tags": [
{
"name": "pokemon"
},
{
"name": "bola"
}
]
}
POST api/Products/CreateBatch
curl --location --request POST 'https://localhost:44339/api/Products/CreateBatch' \
--header 'Content-Type: application/json' \
--data-raw '{
"name": "Pokebola",
"price": 1222,
"description": "Um belo produto",
"imageUrl": "https://gartic.com.br/imgs/mural/ca/carol4u/pokebola.png",
"tags": [
{
"name": "pokemon"
},
{
"name": "bola"
}
]
}'
{
"id": "60d9faf4327e63346711b2d8",
"name": "Pokebola",
"price": 1222,
"description": "Um belo produto",
"imageUrl": "https://gartic.com.br/imgs/mural/ca/carol4u/pokebola.png",
"tags": [
{
"name": "pokemon"
},
{
"name": "bola"
}
]
}
GET /api/Products/id
curl --location --request GET 'https://localhost:44339/api/Products/60da31e86319b657a23cd152' \
--header 'Content-Type: application/json'
{
"id": "60da31e86319b657a23cd152",
"name": "Pokebola",
"price": 1222,
"description": "Um belo produto",
"imageUrl": "https://gartic.com.br/imgs/mural/ca/carol4u/pokebola.png",
"tags": [
{
"name": "pokemon"
},
{
"name": "bola"
}
]
}
PUT api/Products/id
curl --location --request PUT 'https://localhost:44339/api/Products/60da31e86319b657a23cd152' \
--header 'Content-Type: application/json' \
--data-raw '{
"name": "Pokebola Nova",
"price": 1222,
"description": "Um belo produto novo",
"imageUrl": "https://gartic.com.br/imgs/mural/ca/carol4u/pokebola.png",
"tags": [
{
"name": "pokemon novo"
},
{
"name": "bola novo"
}
]
}'
DELETE /api/Products/id
curl --location --request DELETE 'https://localhost:44339/api/Products/60da31e86319b657a23cd152' \
--header 'Content-Type: application/json'
Fernando Luiz de Carvalho Barbosa