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": "a1aa3e1d-4aa9-4b43-9ce4-d43271620c3e",
"TransactionDateUTC": "2026-03-09T04:43:29.5424555+00:00",
"CreatedByUserID": 3,
"CreatedByUserName": "sample string 4",
"Entries": [
{
"LineNumber": 1,
"AccountID": "fd0745e7-f6bc-4b12-9574-d67bc24c65f1",
"EntityID": 3,
"Debit": 4.1,
"Credit": 5.1,
"Memo": "sample string 6",
"ReferenceID": "9e9acb2d-0c54-4873-99cb-1748191d3ad9",
"ReferenceType": "sample string 8",
"CustomProperties": {
"CatalogItemID": "7eb5f4f9-0343-4a6d-a9b2-506e8f95da5c",
"SupplierID": 1,
"PaymentMethodID": 2,
"PaymentID": "1c0e4fd1-1dd6-4958-ad67-70e9ea43a232",
"TaxID": "9595c56b-0e14-4175-bf40-057c355a89d0"
}
},
{
"LineNumber": 1,
"AccountID": "fd0745e7-f6bc-4b12-9574-d67bc24c65f1",
"EntityID": 3,
"Debit": 4.1,
"Credit": 5.1,
"Memo": "sample string 6",
"ReferenceID": "9e9acb2d-0c54-4873-99cb-1748191d3ad9",
"ReferenceType": "sample string 8",
"CustomProperties": {
"CatalogItemID": "7eb5f4f9-0343-4a6d-a9b2-506e8f95da5c",
"SupplierID": 1,
"PaymentMethodID": 2,
"PaymentID": "1c0e4fd1-1dd6-4958-ad67-70e9ea43a232",
"TaxID": "9595c56b-0e14-4175-bf40-057c355a89d0"
}
}
]
},
{
"Id": "a1aa3e1d-4aa9-4b43-9ce4-d43271620c3e",
"TransactionDateUTC": "2026-03-09T04:43:29.5424555+00:00",
"CreatedByUserID": 3,
"CreatedByUserName": "sample string 4",
"Entries": [
{
"LineNumber": 1,
"AccountID": "fd0745e7-f6bc-4b12-9574-d67bc24c65f1",
"EntityID": 3,
"Debit": 4.1,
"Credit": 5.1,
"Memo": "sample string 6",
"ReferenceID": "9e9acb2d-0c54-4873-99cb-1748191d3ad9",
"ReferenceType": "sample string 8",
"CustomProperties": {
"CatalogItemID": "7eb5f4f9-0343-4a6d-a9b2-506e8f95da5c",
"SupplierID": 1,
"PaymentMethodID": 2,
"PaymentID": "1c0e4fd1-1dd6-4958-ad67-70e9ea43a232",
"TaxID": "9595c56b-0e14-4175-bf40-057c355a89d0"
}
},
{
"LineNumber": 1,
"AccountID": "fd0745e7-f6bc-4b12-9574-d67bc24c65f1",
"EntityID": 3,
"Debit": 4.1,
"Credit": 5.1,
"Memo": "sample string 6",
"ReferenceID": "9e9acb2d-0c54-4873-99cb-1748191d3ad9",
"ReferenceType": "sample string 8",
"CustomProperties": {
"CatalogItemID": "7eb5f4f9-0343-4a6d-a9b2-506e8f95da5c",
"SupplierID": 1,
"PaymentMethodID": 2,
"PaymentID": "1c0e4fd1-1dd6-4958-ad67-70e9ea43a232",
"TaxID": "9595c56b-0e14-4175-bf40-057c355a89d0"
}
}
]
}
]