List Statement Entries
API data
Conciliation & Bank Slips API
These APIs are used for additional features such as bank slip issuance and management:
- Production: https://integration.enoqbank.com/enoq
- Sandbox: https://api-hmg.sopague.com.br/integration
- Architecture: Representational State Transfer (REST)
This endpoint lists statement entries for an account within a specified time interval. You can filter by account number, account holder document, and the desired period.
GET /api/statements?accountNumber={accountNumber}&documentNumber={documentNumber}&initDate={initDate}&finalDate={finalDate}
This method accepts parameters to retrieve statement entries based on account details and a date range.
Request
{
"accountNumber": "long",
"documentNumber": "string",
"initDate": "string",
"finalDate": "string"
}
Data dictionary - Parameters
| PARAMETER | DESCRIPTION | TYPE | SIZE | NOTES |
|---|---|---|---|---|
| accountNumber | Account number | long | - | - |
| documentNumber | Account holder document | string | - | - |
| initDate | Start date | string | - | yyyy-MM-ddTHH:mm:ss |
| finalDate | End date | string | - | yyyy-MM-ddTHH:mm:ss |
- 🟢 200
Response
[
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"date": "2024-10-16T17:37:55.717Z",
"type": "string",
"description": "string",
"value": 0
}
]
Data dictionary - Response
| FIELD | DESCRIPTION | TYPE | SIZE | NOTES |
|---|---|---|---|---|
| id | Entry identifier | string | - | - |
| date | Entry date | datetime | - | - |
| type | Entry type | string | - | - |
| description | Entry description | string | - | - |
| value | Entry amount | decimal | - | - |