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": "8e0b141e-b8e3-460a-b239-73aeded4567b",
"TransactionDateUTC": "2026-09-16T12:10:25.742935+00:00",
"CreatedByUserID": 3,
"CreatedByUserName": "sample string 4",
"Entries": [
{
"LineNumber": 1,
"AccountID": "89843fd3-3f8e-4f1e-9ddb-f7dac2ec6262",
"EntityID": 3,
"Debit": 4.1,
"Credit": 5.1,
"Memo": "sample string 6",
"ReferenceID": "4baa8ee7-a186-4bf7-af76-d03ab30bb301",
"ReferenceType": "sample string 8",
"CustomProperties": {
"CatalogItemID": "8788bd78-c5c0-4cdb-8314-eb74fe6cd4c6",
"SupplierID": 1,
"PaymentMethodID": 2,
"PaymentID": "a397e68e-59aa-4e76-af1e-d6d38bf452e1",
"TaxID": "c86132a7-33c2-4334-bb79-92fdec31261c"
}
},
{
"LineNumber": 1,
"AccountID": "89843fd3-3f8e-4f1e-9ddb-f7dac2ec6262",
"EntityID": 3,
"Debit": 4.1,
"Credit": 5.1,
"Memo": "sample string 6",
"ReferenceID": "4baa8ee7-a186-4bf7-af76-d03ab30bb301",
"ReferenceType": "sample string 8",
"CustomProperties": {
"CatalogItemID": "8788bd78-c5c0-4cdb-8314-eb74fe6cd4c6",
"SupplierID": 1,
"PaymentMethodID": 2,
"PaymentID": "a397e68e-59aa-4e76-af1e-d6d38bf452e1",
"TaxID": "c86132a7-33c2-4334-bb79-92fdec31261c"
}
}
]
},
{
"Id": "8e0b141e-b8e3-460a-b239-73aeded4567b",
"TransactionDateUTC": "2026-09-16T12:10:25.742935+00:00",
"CreatedByUserID": 3,
"CreatedByUserName": "sample string 4",
"Entries": [
{
"LineNumber": 1,
"AccountID": "89843fd3-3f8e-4f1e-9ddb-f7dac2ec6262",
"EntityID": 3,
"Debit": 4.1,
"Credit": 5.1,
"Memo": "sample string 6",
"ReferenceID": "4baa8ee7-a186-4bf7-af76-d03ab30bb301",
"ReferenceType": "sample string 8",
"CustomProperties": {
"CatalogItemID": "8788bd78-c5c0-4cdb-8314-eb74fe6cd4c6",
"SupplierID": 1,
"PaymentMethodID": 2,
"PaymentID": "a397e68e-59aa-4e76-af1e-d6d38bf452e1",
"TaxID": "c86132a7-33c2-4334-bb79-92fdec31261c"
}
},
{
"LineNumber": 1,
"AccountID": "89843fd3-3f8e-4f1e-9ddb-f7dac2ec6262",
"EntityID": 3,
"Debit": 4.1,
"Credit": 5.1,
"Memo": "sample string 6",
"ReferenceID": "4baa8ee7-a186-4bf7-af76-d03ab30bb301",
"ReferenceType": "sample string 8",
"CustomProperties": {
"CatalogItemID": "8788bd78-c5c0-4cdb-8314-eb74fe6cd4c6",
"SupplierID": 1,
"PaymentMethodID": 2,
"PaymentID": "a397e68e-59aa-4e76-af1e-d6d38bf452e1",
"TaxID": "c86132a7-33c2-4334-bb79-92fdec31261c"
}
}
]
}
]