Visualizar Relatório de Recebíveis
Caso queira visualizar o conteúdo do arquivo de recebíveis , você deve realizar uma chamada na API Visualizar Relatório de Recebíveis utilizando o método GET
Modelo de requisição:
curl --location --request GET 'https://sandbox.openfinance.celcoin.dev/baas/v1/cash/report-file/{filename}' \
Parâmetros do Body:
| Campo | Descrição | Tipo |
|---|---|---|
| fileName | Nome do arquivo do relatório (será informado no retorno do webhook) | String |
Modelo de retorno:
{
"status": "success",
"body": [
[
{
"id": 100380324,
"account": 15942,
"paymentBillId": 10540,
"transactionId": 10664,
"installment": 1,
"brand": "visa",
"operation": "captured",
"operationDate": "2024-09-27",
"status": "payed",
"originalSettlementDate": "2024-10-28",
"advancementDate": "2024-09-28",
"settledDate": "2024-09-28",
"grossValue": 100,
"netValue": 94.71,
"taxMdr": 4.18,
"taxAdvancement": 1.1,
"settledValue": 100
}Tabela descritiva dos campos retornados
| Campo | Descrição | Tipo |
|---|---|---|
| id | String | |
| account | String | |
| paymentBillId | String | |
| transactionId | String | |
| installment | String | |
| brand | String | |
| operation | String | |
| operationDate | String | |
| status | String | |
| originalSettlementDate | String | |
| advancementDate | String | |
| settledDate | String | |
| grossValue | String | |
| netValue | String | |
| taxMdr | String | |
| taxAdvancement | String | |
| settledValue | String |
Updated about 2 hours ago