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": "8d685cf6-a55f-45b3-9798-fac8a867959f",
"TransactionDateUTC": "2026-09-21T06:02:55.1954751+00:00",
"CreatedByUserID": 3,
"CreatedByUserName": "sample string 4",
"Entries": [
{
"LineNumber": 1,
"AccountID": "5a48c5eb-b2a3-4486-91cc-72c4f293488b",
"EntityID": 3,
"Debit": 4.1,
"Credit": 5.1,
"Memo": "sample string 6",
"ReferenceID": "5bf50648-4357-4db6-8223-6dd9a474ed1c",
"ReferenceType": "sample string 8",
"CustomProperties": {
"CatalogItemID": "9fe6933c-6aca-4a34-a5c8-46ad964c3555",
"SupplierID": 1,
"PaymentMethodID": 2,
"PaymentID": "ce3fc8ee-f6c2-4767-ba88-5982fdbeed0b",
"TaxID": "23280af3-343e-4633-a8c2-33a580f850a4"
}
},
{
"LineNumber": 1,
"AccountID": "5a48c5eb-b2a3-4486-91cc-72c4f293488b",
"EntityID": 3,
"Debit": 4.1,
"Credit": 5.1,
"Memo": "sample string 6",
"ReferenceID": "5bf50648-4357-4db6-8223-6dd9a474ed1c",
"ReferenceType": "sample string 8",
"CustomProperties": {
"CatalogItemID": "9fe6933c-6aca-4a34-a5c8-46ad964c3555",
"SupplierID": 1,
"PaymentMethodID": 2,
"PaymentID": "ce3fc8ee-f6c2-4767-ba88-5982fdbeed0b",
"TaxID": "23280af3-343e-4633-a8c2-33a580f850a4"
}
}
]
},
{
"Id": "8d685cf6-a55f-45b3-9798-fac8a867959f",
"TransactionDateUTC": "2026-09-21T06:02:55.1954751+00:00",
"CreatedByUserID": 3,
"CreatedByUserName": "sample string 4",
"Entries": [
{
"LineNumber": 1,
"AccountID": "5a48c5eb-b2a3-4486-91cc-72c4f293488b",
"EntityID": 3,
"Debit": 4.1,
"Credit": 5.1,
"Memo": "sample string 6",
"ReferenceID": "5bf50648-4357-4db6-8223-6dd9a474ed1c",
"ReferenceType": "sample string 8",
"CustomProperties": {
"CatalogItemID": "9fe6933c-6aca-4a34-a5c8-46ad964c3555",
"SupplierID": 1,
"PaymentMethodID": 2,
"PaymentID": "ce3fc8ee-f6c2-4767-ba88-5982fdbeed0b",
"TaxID": "23280af3-343e-4633-a8c2-33a580f850a4"
}
},
{
"LineNumber": 1,
"AccountID": "5a48c5eb-b2a3-4486-91cc-72c4f293488b",
"EntityID": 3,
"Debit": 4.1,
"Credit": 5.1,
"Memo": "sample string 6",
"ReferenceID": "5bf50648-4357-4db6-8223-6dd9a474ed1c",
"ReferenceType": "sample string 8",
"CustomProperties": {
"CatalogItemID": "9fe6933c-6aca-4a34-a5c8-46ad964c3555",
"SupplierID": 1,
"PaymentMethodID": 2,
"PaymentID": "ce3fc8ee-f6c2-4767-ba88-5982fdbeed0b",
"TaxID": "23280af3-343e-4633-a8c2-33a580f850a4"
}
}
]
}
]