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": "0c75734f-4d41-4a1e-a73b-b7f94c6d20f4",
"TransactionDateUTC": "2026-05-31T09:29:35.0695332+00:00",
"CreatedByUserID": 3,
"CreatedByUserName": "sample string 4",
"Entries": [
{
"LineNumber": 1,
"AccountID": "786dc15f-1502-4256-8091-2a7c87c76227",
"EntityID": 3,
"Debit": 4.1,
"Credit": 5.1,
"Memo": "sample string 6",
"ReferenceID": "e8e0d452-6222-472d-a6b8-d91a849e0433",
"ReferenceType": "sample string 8",
"CustomProperties": {
"CatalogItemID": "150c71d2-1805-4615-bc28-4db9c9586623",
"SupplierID": 1,
"PaymentMethodID": 2,
"PaymentID": "ea8d2669-7991-4e9a-bcd2-e416dd67b86b",
"TaxID": "845d72f3-943e-47a2-9492-d63263f03713"
}
},
{
"LineNumber": 1,
"AccountID": "786dc15f-1502-4256-8091-2a7c87c76227",
"EntityID": 3,
"Debit": 4.1,
"Credit": 5.1,
"Memo": "sample string 6",
"ReferenceID": "e8e0d452-6222-472d-a6b8-d91a849e0433",
"ReferenceType": "sample string 8",
"CustomProperties": {
"CatalogItemID": "150c71d2-1805-4615-bc28-4db9c9586623",
"SupplierID": 1,
"PaymentMethodID": 2,
"PaymentID": "ea8d2669-7991-4e9a-bcd2-e416dd67b86b",
"TaxID": "845d72f3-943e-47a2-9492-d63263f03713"
}
}
]
},
{
"Id": "0c75734f-4d41-4a1e-a73b-b7f94c6d20f4",
"TransactionDateUTC": "2026-05-31T09:29:35.0695332+00:00",
"CreatedByUserID": 3,
"CreatedByUserName": "sample string 4",
"Entries": [
{
"LineNumber": 1,
"AccountID": "786dc15f-1502-4256-8091-2a7c87c76227",
"EntityID": 3,
"Debit": 4.1,
"Credit": 5.1,
"Memo": "sample string 6",
"ReferenceID": "e8e0d452-6222-472d-a6b8-d91a849e0433",
"ReferenceType": "sample string 8",
"CustomProperties": {
"CatalogItemID": "150c71d2-1805-4615-bc28-4db9c9586623",
"SupplierID": 1,
"PaymentMethodID": 2,
"PaymentID": "ea8d2669-7991-4e9a-bcd2-e416dd67b86b",
"TaxID": "845d72f3-943e-47a2-9492-d63263f03713"
}
},
{
"LineNumber": 1,
"AccountID": "786dc15f-1502-4256-8091-2a7c87c76227",
"EntityID": 3,
"Debit": 4.1,
"Credit": 5.1,
"Memo": "sample string 6",
"ReferenceID": "e8e0d452-6222-472d-a6b8-d91a849e0433",
"ReferenceType": "sample string 8",
"CustomProperties": {
"CatalogItemID": "150c71d2-1805-4615-bc28-4db9c9586623",
"SupplierID": 1,
"PaymentMethodID": 2,
"PaymentID": "ea8d2669-7991-4e9a-bcd2-e416dd67b86b",
"TaxID": "845d72f3-943e-47a2-9492-d63263f03713"
}
}
]
}
]