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": "b0d821b5-5ff3-46b8-aa18-232e659d980a",
"TransactionDateUTC": "2026-07-21T11:10:47.1807015+00:00",
"CreatedByUserID": 3,
"CreatedByUserName": "sample string 4",
"Entries": [
{
"LineNumber": 1,
"AccountID": "57957c13-47da-4d97-9d36-68c42fd00f72",
"EntityID": 3,
"Debit": 4.1,
"Credit": 5.1,
"Memo": "sample string 6",
"ReferenceID": "d616707f-2b34-4073-84f9-4859425c47b5",
"ReferenceType": "sample string 8",
"CustomProperties": {
"CatalogItemID": "51184d9d-a304-4f7d-b7b0-908fe9dcf641",
"SupplierID": 1,
"PaymentMethodID": 2,
"PaymentID": "b7e8f39f-4d20-4075-99e7-8ec1b19ea87e",
"TaxID": "31ceccf6-4d52-480c-9d43-29608fd6021e"
}
},
{
"LineNumber": 1,
"AccountID": "57957c13-47da-4d97-9d36-68c42fd00f72",
"EntityID": 3,
"Debit": 4.1,
"Credit": 5.1,
"Memo": "sample string 6",
"ReferenceID": "d616707f-2b34-4073-84f9-4859425c47b5",
"ReferenceType": "sample string 8",
"CustomProperties": {
"CatalogItemID": "51184d9d-a304-4f7d-b7b0-908fe9dcf641",
"SupplierID": 1,
"PaymentMethodID": 2,
"PaymentID": "b7e8f39f-4d20-4075-99e7-8ec1b19ea87e",
"TaxID": "31ceccf6-4d52-480c-9d43-29608fd6021e"
}
}
]
},
{
"Id": "b0d821b5-5ff3-46b8-aa18-232e659d980a",
"TransactionDateUTC": "2026-07-21T11:10:47.1807015+00:00",
"CreatedByUserID": 3,
"CreatedByUserName": "sample string 4",
"Entries": [
{
"LineNumber": 1,
"AccountID": "57957c13-47da-4d97-9d36-68c42fd00f72",
"EntityID": 3,
"Debit": 4.1,
"Credit": 5.1,
"Memo": "sample string 6",
"ReferenceID": "d616707f-2b34-4073-84f9-4859425c47b5",
"ReferenceType": "sample string 8",
"CustomProperties": {
"CatalogItemID": "51184d9d-a304-4f7d-b7b0-908fe9dcf641",
"SupplierID": 1,
"PaymentMethodID": 2,
"PaymentID": "b7e8f39f-4d20-4075-99e7-8ec1b19ea87e",
"TaxID": "31ceccf6-4d52-480c-9d43-29608fd6021e"
}
},
{
"LineNumber": 1,
"AccountID": "57957c13-47da-4d97-9d36-68c42fd00f72",
"EntityID": 3,
"Debit": 4.1,
"Credit": 5.1,
"Memo": "sample string 6",
"ReferenceID": "d616707f-2b34-4073-84f9-4859425c47b5",
"ReferenceType": "sample string 8",
"CustomProperties": {
"CatalogItemID": "51184d9d-a304-4f7d-b7b0-908fe9dcf641",
"SupplierID": 1,
"PaymentMethodID": 2,
"PaymentID": "b7e8f39f-4d20-4075-99e7-8ec1b19ea87e",
"TaxID": "31ceccf6-4d52-480c-9d43-29608fd6021e"
}
}
]
}
]