Histórico da Página
...
02. SITUAÇÃO/REQUISITO
Criação de API REST com método métodos POST(criação) e DELETE(exclusão) de pagamentos pendentes a fim de substituir a integração EAI. A integração a ser substituída éAs integrações a serem substituídas foram: adapters\xml\fi5\axrfi010.p e adapters\xml\fi5\axrfi009.p.
03. SOLUÇÃO
Totvs custom tabs box | ||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||
|
04. DEMAIS INFORMAÇÕES
JSON Pagamentos Pendente (POST):
{
"CashierNumber": 1,
"CustomerCode": 1,
"PaymentDate": "2024-11-07",
"PaymentDescription": "descrição",
"Reference": "ref5",
"PaymentValue": 10
}
JSON Pagamentos Pendente (DELETE):
{
"PendingPaymentInformation": [
{
"CashierNumber": 1,
"CustomerCode": 1,
"PaymentDate": "2024-11-07",
"PaymentDescription": "",
"Reference": "ref",
"PaymentValue": 10
}
]
}
JSON Retorno de Erros:
{
"detailedMessage": "Deve ser informado algum valor para Cliente.",
"code": "20731",
"message": "Cliente inválido !",
"type": "error"
}
...