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": "17b83697-5d07-4b50-97a5-79881ced6918",
"TransactionDateUTC": "2026-06-05T16:31:49.4547191+00:00",
"CreatedByUserID": 3,
"CreatedByUserName": "sample string 4",
"Entries": [
{
"LineNumber": 1,
"AccountID": "e596e9bb-44c3-493b-a361-708bc7c04065",
"EntityID": 3,
"Debit": 4.1,
"Credit": 5.1,
"Memo": "sample string 6",
"ReferenceID": "43b244a6-ba3b-4cd0-b5be-fe8a5282f5fa",
"ReferenceType": "sample string 8",
"CustomProperties": {
"CatalogItemID": "8a00621f-b4f4-4a5d-b33b-fb18217daa57",
"SupplierID": 1,
"PaymentMethodID": 2,
"PaymentID": "c0384a8d-0d91-4ea6-8c5a-2847cb88a1be",
"TaxID": "3e9400f1-fe3b-4e1e-8891-eafda991a01c"
}
},
{
"LineNumber": 1,
"AccountID": "e596e9bb-44c3-493b-a361-708bc7c04065",
"EntityID": 3,
"Debit": 4.1,
"Credit": 5.1,
"Memo": "sample string 6",
"ReferenceID": "43b244a6-ba3b-4cd0-b5be-fe8a5282f5fa",
"ReferenceType": "sample string 8",
"CustomProperties": {
"CatalogItemID": "8a00621f-b4f4-4a5d-b33b-fb18217daa57",
"SupplierID": 1,
"PaymentMethodID": 2,
"PaymentID": "c0384a8d-0d91-4ea6-8c5a-2847cb88a1be",
"TaxID": "3e9400f1-fe3b-4e1e-8891-eafda991a01c"
}
}
]
},
{
"Id": "17b83697-5d07-4b50-97a5-79881ced6918",
"TransactionDateUTC": "2026-06-05T16:31:49.4547191+00:00",
"CreatedByUserID": 3,
"CreatedByUserName": "sample string 4",
"Entries": [
{
"LineNumber": 1,
"AccountID": "e596e9bb-44c3-493b-a361-708bc7c04065",
"EntityID": 3,
"Debit": 4.1,
"Credit": 5.1,
"Memo": "sample string 6",
"ReferenceID": "43b244a6-ba3b-4cd0-b5be-fe8a5282f5fa",
"ReferenceType": "sample string 8",
"CustomProperties": {
"CatalogItemID": "8a00621f-b4f4-4a5d-b33b-fb18217daa57",
"SupplierID": 1,
"PaymentMethodID": 2,
"PaymentID": "c0384a8d-0d91-4ea6-8c5a-2847cb88a1be",
"TaxID": "3e9400f1-fe3b-4e1e-8891-eafda991a01c"
}
},
{
"LineNumber": 1,
"AccountID": "e596e9bb-44c3-493b-a361-708bc7c04065",
"EntityID": 3,
"Debit": 4.1,
"Credit": 5.1,
"Memo": "sample string 6",
"ReferenceID": "43b244a6-ba3b-4cd0-b5be-fe8a5282f5fa",
"ReferenceType": "sample string 8",
"CustomProperties": {
"CatalogItemID": "8a00621f-b4f4-4a5d-b33b-fb18217daa57",
"SupplierID": 1,
"PaymentMethodID": 2,
"PaymentID": "c0384a8d-0d91-4ea6-8c5a-2847cb88a1be",
"TaxID": "3e9400f1-fe3b-4e1e-8891-eafda991a01c"
}
}
]
}
]