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": "54cb1764-5064-472b-834c-f1af701566b8",
"TransactionDateUTC": "2026-09-07T07:25:14.1339087+00:00",
"CreatedByUserID": 3,
"CreatedByUserName": "sample string 4",
"Entries": [
{
"LineNumber": 1,
"AccountID": "ead62ad9-05b9-403e-afe4-df0756d8edd3",
"EntityID": 3,
"Debit": 4.1,
"Credit": 5.1,
"Memo": "sample string 6",
"ReferenceID": "dc0132ab-ab7a-4330-b106-862faee55c29",
"ReferenceType": "sample string 8",
"CustomProperties": {
"CatalogItemID": "52faa3cc-b484-4601-9851-38f1cb6b6b3e",
"SupplierID": 1,
"PaymentMethodID": 2,
"PaymentID": "6bfc849f-c72c-4abf-af92-5c719af4d0b9",
"TaxID": "8fa75e8f-a0e1-4e87-ba1a-31291646cd9b"
}
},
{
"LineNumber": 1,
"AccountID": "ead62ad9-05b9-403e-afe4-df0756d8edd3",
"EntityID": 3,
"Debit": 4.1,
"Credit": 5.1,
"Memo": "sample string 6",
"ReferenceID": "dc0132ab-ab7a-4330-b106-862faee55c29",
"ReferenceType": "sample string 8",
"CustomProperties": {
"CatalogItemID": "52faa3cc-b484-4601-9851-38f1cb6b6b3e",
"SupplierID": 1,
"PaymentMethodID": 2,
"PaymentID": "6bfc849f-c72c-4abf-af92-5c719af4d0b9",
"TaxID": "8fa75e8f-a0e1-4e87-ba1a-31291646cd9b"
}
}
]
},
{
"Id": "54cb1764-5064-472b-834c-f1af701566b8",
"TransactionDateUTC": "2026-09-07T07:25:14.1339087+00:00",
"CreatedByUserID": 3,
"CreatedByUserName": "sample string 4",
"Entries": [
{
"LineNumber": 1,
"AccountID": "ead62ad9-05b9-403e-afe4-df0756d8edd3",
"EntityID": 3,
"Debit": 4.1,
"Credit": 5.1,
"Memo": "sample string 6",
"ReferenceID": "dc0132ab-ab7a-4330-b106-862faee55c29",
"ReferenceType": "sample string 8",
"CustomProperties": {
"CatalogItemID": "52faa3cc-b484-4601-9851-38f1cb6b6b3e",
"SupplierID": 1,
"PaymentMethodID": 2,
"PaymentID": "6bfc849f-c72c-4abf-af92-5c719af4d0b9",
"TaxID": "8fa75e8f-a0e1-4e87-ba1a-31291646cd9b"
}
},
{
"LineNumber": 1,
"AccountID": "ead62ad9-05b9-403e-afe4-df0756d8edd3",
"EntityID": 3,
"Debit": 4.1,
"Credit": 5.1,
"Memo": "sample string 6",
"ReferenceID": "dc0132ab-ab7a-4330-b106-862faee55c29",
"ReferenceType": "sample string 8",
"CustomProperties": {
"CatalogItemID": "52faa3cc-b484-4601-9851-38f1cb6b6b3e",
"SupplierID": 1,
"PaymentMethodID": 2,
"PaymentID": "6bfc849f-c72c-4abf-af92-5c719af4d0b9",
"TaxID": "8fa75e8f-a0e1-4e87-ba1a-31291646cd9b"
}
}
]
}
]