| Parâmetro | Tipo | Descrição |
|---|---|---|
cpf |
string |
Obrigatório. |
Method: GET
http://host.docker.internal:59434/clientes?cpf=xxx.xxx.xxx-xx
Body (raw)
{
"id": 1,
"cpf": "xxx.xxx.xxx-xx",
"nome": "Pedro",
"idade": 18
}Method: POST
http://host.docker.internal:59434/clientes
Body (pretty)
{
"id": 1,
"cpf": "xxx.xxx.xxx-xx",
"nome": "Pedro",
"idade": 18
}Method: PUT
http://host.docker.internal:59434/clientes
Body (pretty)
{
"id": 1,
"cpf": "xxx.xxx.xxx-xx",
"nome": "Pedro",
"idade": 18
}Method: DELETE
http://host.docker.internal:59434/clientes/1