Histórico da Página
Esta entidade exibe informações sobre Condição de Pagamento e suporta as seguintes operações: GET, PUT, POST, DELETE
Campos do retorno
Nome | Descrição | Tamanho do campo | Tipo | Mais detalhes |
id | Codigo | 3 | Caracter | - |
type | Tipo | 1 | Caracter | - |
typeDescription1 | Descrição do Tipo | 110 | Caracter | - |
paymentCond | Parâmetros | 40 | Caracter |
|
description | Descrição | 20 | Caracter |
|
days | Dias | 1 | Caracter |
|
payInCheck | Pagto em Cheque | 1 | Caracter |
|
formICMSPayment | Forma de Pagto ICMS | 1 | Caracter |
|
formIpiPayment | Forma de Pagto IPI | 1 | Caracter |
|
minimumValue | Vlr Mínimo | 14,2 | Numérico |
|
Leitura de registro específico(GET):
/first/api/v1/PaymentCondition/001 |
---|
{ "pk": "001", "id": "001", "type": "1", "typeDescription1": "Informe o deslocamento em dias a partir da Data Base. Ex.:00,30 - 1a. parc. à vista - 2a. parc. 30 dias.", "paymentCond": "00", "description": "A VISTA BOL/CART", "days": "", "payInCheck": "2", "formICMSPayment": "", "formIpiPayment": "", "minimumValue": 0 } |
Leitura de registro com filtro (GET)
/first/api/v1/PaymentCondition?description=30 DIAS CHEQUE |
---|
{ "total": 1, "hasNext": false, "syncing": false, "lines": [ { "pk": "004", "id": "004", "type": "1", "typeDescription1": "Informe o deslocamento em dias a partir da Data Base. Ex.:00,30 - 1a. parc. à vista - 2a. parc. 30 dias.", "paymentCond": "31", "description": "30 DIAS CHEQUE", "days": "", "payInCheck": "2", "formICMSPayment": "", "formIpiPayment": "", "minimumValue": 0 } ] } |
Atualização de Registro (PUT)
/first/api/v1/client/000028 |
---|
Body: { "description": "teste" } |
Retorno: { "url": "/first/api/v1/paymentcondition/001", "id": "001" } |
Inclusão (POST)
/first/api/v1/PaymentCondition |
---|
Body: { "id": "500", "type": "1", "typeDescription1": "Informe o deslocamento em dias a partir da Data Base. Ex.:00,30 - 1a. parc. à vista - 2a. parc. 30 dias.", "paymentCond": "00", "description": "TESTE", "days": "", "payInCheck": "2", "formICMSPayment": "", "formIpiPayment": "", "minimumValue": 0 }, |
Retorno : { "url": "/first/api/v1/paymentcondition/500", "id": "500" }
|
Exclusão (DELETE)
/first/api/v1/PaymentCondition/500 |
---|
Retorno :
{ "url": "/first/api/v1/paymentcondition/500", "id": "500" } |