GET v1/Companies({CompanyId})/Transactions?filter={filter}
Returns General Ledger Transactions by Date Range
Information:
Base URL:
https://api.covasoft.net/generalledger
Example of a call would be:
https://api.covasoft.net/generalledger/v1/Companies({CompanyId})/Transactions?$filter=TransactionDateUTC ge datetime'2019-09-11T00:00:00.000' and TransactionDateUTC le datetime'2019-09-12T00:00:00.000' & $skip=0 & $top=200
Odata Filters
Required: filter=TransactionDateUTC ge datetime'{UTCdatetime}' and TransactionDateUTC le datetime'{UTCdatetime}'
This can be no more than a 30 day span
Normal Odata pagings with $top & $skip
Max $top is 200 records
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| CompanyId |
The unique Company Id that was provided in your onboarding pacakage. |
integer |
Required |
| filter |
The Odata filter applied to this call, see Odata filter section above |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
General Ledger Transactions by Date Range
Collection of GlTransactionsByDateRangeReturn| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| TransactionDateUTC | date |
None. |
|
| CreatedByUserID | integer |
None. |
|
| CreatedByUserName | string |
None. |
|
| Entries | Collection of GLEntry |
None. |
Response Formats
application/json, text/json
[
{
"Id": "a7353b2e-b5ca-49fd-9dd1-090a6af29d93",
"TransactionDateUTC": "2026-07-10T10:33:13.1382079+00:00",
"CreatedByUserID": 3,
"CreatedByUserName": "sample string 4",
"Entries": [
{
"LineNumber": 1,
"AccountID": "63b092eb-89b8-45fe-a691-b1aa38bcaeac",
"EntityID": 3,
"Debit": 4.1,
"Credit": 5.1,
"Memo": "sample string 6",
"ReferenceID": "c2d1b7a0-50e1-46dc-8c66-1052a3b53b99",
"ReferenceType": "sample string 8",
"CustomProperties": {
"CatalogItemID": "365ad76a-353c-4a3f-b950-a10b527ba510",
"SupplierID": 1,
"PaymentMethodID": 2,
"PaymentID": "ee15f3af-e4d2-42b3-9b31-af18f9c04dc8",
"TaxID": "17adde36-6102-40a4-b0d3-d96077409e01"
}
},
{
"LineNumber": 1,
"AccountID": "63b092eb-89b8-45fe-a691-b1aa38bcaeac",
"EntityID": 3,
"Debit": 4.1,
"Credit": 5.1,
"Memo": "sample string 6",
"ReferenceID": "c2d1b7a0-50e1-46dc-8c66-1052a3b53b99",
"ReferenceType": "sample string 8",
"CustomProperties": {
"CatalogItemID": "365ad76a-353c-4a3f-b950-a10b527ba510",
"SupplierID": 1,
"PaymentMethodID": 2,
"PaymentID": "ee15f3af-e4d2-42b3-9b31-af18f9c04dc8",
"TaxID": "17adde36-6102-40a4-b0d3-d96077409e01"
}
}
]
},
{
"Id": "a7353b2e-b5ca-49fd-9dd1-090a6af29d93",
"TransactionDateUTC": "2026-07-10T10:33:13.1382079+00:00",
"CreatedByUserID": 3,
"CreatedByUserName": "sample string 4",
"Entries": [
{
"LineNumber": 1,
"AccountID": "63b092eb-89b8-45fe-a691-b1aa38bcaeac",
"EntityID": 3,
"Debit": 4.1,
"Credit": 5.1,
"Memo": "sample string 6",
"ReferenceID": "c2d1b7a0-50e1-46dc-8c66-1052a3b53b99",
"ReferenceType": "sample string 8",
"CustomProperties": {
"CatalogItemID": "365ad76a-353c-4a3f-b950-a10b527ba510",
"SupplierID": 1,
"PaymentMethodID": 2,
"PaymentID": "ee15f3af-e4d2-42b3-9b31-af18f9c04dc8",
"TaxID": "17adde36-6102-40a4-b0d3-d96077409e01"
}
},
{
"LineNumber": 1,
"AccountID": "63b092eb-89b8-45fe-a691-b1aa38bcaeac",
"EntityID": 3,
"Debit": 4.1,
"Credit": 5.1,
"Memo": "sample string 6",
"ReferenceID": "c2d1b7a0-50e1-46dc-8c66-1052a3b53b99",
"ReferenceType": "sample string 8",
"CustomProperties": {
"CatalogItemID": "365ad76a-353c-4a3f-b950-a10b527ba510",
"SupplierID": 1,
"PaymentMethodID": 2,
"PaymentID": "ee15f3af-e4d2-42b3-9b31-af18f9c04dc8",
"TaxID": "17adde36-6102-40a4-b0d3-d96077409e01"
}
}
]
}
]