PUT /api/produto
Endpoint responsável por alterar o valor e o status de um Combustível Associado ao Estabelecimento do Parceiro. Para desativar um Combustível Associado basta definir o campo “ativo” como false.
Headers
Content-Type | application/json |
Authorization | Bearer {token} |
Request Body application/json
Schema:
Campo | Tipo | Descrição | Tamanho Máximo | Obrigatório |
idEstabelecimentoProduto | Long | ID que identifica a associação entre Estabelecimento e Combustível. | - | Sim |
valor | Decimal | Valor do Combustível por litro. | - | Sim |
ativo | Boolean | Campo que indica se o Combustível está ativo. | - | Sim |
JSON:
{ "idEstabelecimentoProduto": 1, "valor": 5.30, "ativo": true }
Response Body application/json
Schema:
Campo | Tipo | Descrição |
- | Boolean | Retorna True se a operação foi bem-sucedida. |