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": "e1d8ffca-099b-403b-8480-4600d71d05a0",
"TransactionDateUTC": "2025-12-20T19:02:27.8701426+00:00",
"CreatedByUserID": 3,
"CreatedByUserName": "sample string 4",
"Entries": [
{
"LineNumber": 1,
"AccountID": "073c252b-775d-4c40-b23e-8e3a6ffb88dd",
"EntityID": 3,
"Debit": 4.1,
"Credit": 5.1,
"Memo": "sample string 6",
"ReferenceID": "f57d3af8-df87-4bbf-9f96-049ca0d6ef26",
"ReferenceType": "sample string 8",
"CustomProperties": {
"CatalogItemID": "7f886c17-151d-44f8-a2ef-cade7b585b75",
"SupplierID": 1,
"PaymentMethodID": 2,
"PaymentID": "8c1f4600-fdc8-47f7-b8d6-72d5f2ff11b8",
"TaxID": "e444c61a-fe0b-4a8c-ad54-1ea31d98bd28"
}
},
{
"LineNumber": 1,
"AccountID": "073c252b-775d-4c40-b23e-8e3a6ffb88dd",
"EntityID": 3,
"Debit": 4.1,
"Credit": 5.1,
"Memo": "sample string 6",
"ReferenceID": "f57d3af8-df87-4bbf-9f96-049ca0d6ef26",
"ReferenceType": "sample string 8",
"CustomProperties": {
"CatalogItemID": "7f886c17-151d-44f8-a2ef-cade7b585b75",
"SupplierID": 1,
"PaymentMethodID": 2,
"PaymentID": "8c1f4600-fdc8-47f7-b8d6-72d5f2ff11b8",
"TaxID": "e444c61a-fe0b-4a8c-ad54-1ea31d98bd28"
}
}
]
},
{
"Id": "e1d8ffca-099b-403b-8480-4600d71d05a0",
"TransactionDateUTC": "2025-12-20T19:02:27.8701426+00:00",
"CreatedByUserID": 3,
"CreatedByUserName": "sample string 4",
"Entries": [
{
"LineNumber": 1,
"AccountID": "073c252b-775d-4c40-b23e-8e3a6ffb88dd",
"EntityID": 3,
"Debit": 4.1,
"Credit": 5.1,
"Memo": "sample string 6",
"ReferenceID": "f57d3af8-df87-4bbf-9f96-049ca0d6ef26",
"ReferenceType": "sample string 8",
"CustomProperties": {
"CatalogItemID": "7f886c17-151d-44f8-a2ef-cade7b585b75",
"SupplierID": 1,
"PaymentMethodID": 2,
"PaymentID": "8c1f4600-fdc8-47f7-b8d6-72d5f2ff11b8",
"TaxID": "e444c61a-fe0b-4a8c-ad54-1ea31d98bd28"
}
},
{
"LineNumber": 1,
"AccountID": "073c252b-775d-4c40-b23e-8e3a6ffb88dd",
"EntityID": 3,
"Debit": 4.1,
"Credit": 5.1,
"Memo": "sample string 6",
"ReferenceID": "f57d3af8-df87-4bbf-9f96-049ca0d6ef26",
"ReferenceType": "sample string 8",
"CustomProperties": {
"CatalogItemID": "7f886c17-151d-44f8-a2ef-cade7b585b75",
"SupplierID": 1,
"PaymentMethodID": 2,
"PaymentID": "8c1f4600-fdc8-47f7-b8d6-72d5f2ff11b8",
"TaxID": "e444c61a-fe0b-4a8c-ad54-1ea31d98bd28"
}
}
]
}
]