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": "bd8b2f56-f39e-44b6-bdaa-9671c830fd8b",
"TransactionDateUTC": "2026-09-05T17:31:40.9241477+00:00",
"CreatedByUserID": 3,
"CreatedByUserName": "sample string 4",
"Entries": [
{
"LineNumber": 1,
"AccountID": "777855a9-5223-4717-a186-17d28ab6eb5d",
"EntityID": 3,
"Debit": 4.1,
"Credit": 5.1,
"Memo": "sample string 6",
"ReferenceID": "a21cee57-0d49-419a-89ff-9260cf4be179",
"ReferenceType": "sample string 8",
"CustomProperties": {
"CatalogItemID": "bd58a15d-89b2-4163-bf86-7221d9117618",
"SupplierID": 1,
"PaymentMethodID": 2,
"PaymentID": "c72cf650-bc76-462f-817e-559d1f456363",
"TaxID": "a1f781c6-12bb-4a6d-beca-b05930a92527"
}
},
{
"LineNumber": 1,
"AccountID": "777855a9-5223-4717-a186-17d28ab6eb5d",
"EntityID": 3,
"Debit": 4.1,
"Credit": 5.1,
"Memo": "sample string 6",
"ReferenceID": "a21cee57-0d49-419a-89ff-9260cf4be179",
"ReferenceType": "sample string 8",
"CustomProperties": {
"CatalogItemID": "bd58a15d-89b2-4163-bf86-7221d9117618",
"SupplierID": 1,
"PaymentMethodID": 2,
"PaymentID": "c72cf650-bc76-462f-817e-559d1f456363",
"TaxID": "a1f781c6-12bb-4a6d-beca-b05930a92527"
}
}
]
},
{
"Id": "bd8b2f56-f39e-44b6-bdaa-9671c830fd8b",
"TransactionDateUTC": "2026-09-05T17:31:40.9241477+00:00",
"CreatedByUserID": 3,
"CreatedByUserName": "sample string 4",
"Entries": [
{
"LineNumber": 1,
"AccountID": "777855a9-5223-4717-a186-17d28ab6eb5d",
"EntityID": 3,
"Debit": 4.1,
"Credit": 5.1,
"Memo": "sample string 6",
"ReferenceID": "a21cee57-0d49-419a-89ff-9260cf4be179",
"ReferenceType": "sample string 8",
"CustomProperties": {
"CatalogItemID": "bd58a15d-89b2-4163-bf86-7221d9117618",
"SupplierID": 1,
"PaymentMethodID": 2,
"PaymentID": "c72cf650-bc76-462f-817e-559d1f456363",
"TaxID": "a1f781c6-12bb-4a6d-beca-b05930a92527"
}
},
{
"LineNumber": 1,
"AccountID": "777855a9-5223-4717-a186-17d28ab6eb5d",
"EntityID": 3,
"Debit": 4.1,
"Credit": 5.1,
"Memo": "sample string 6",
"ReferenceID": "a21cee57-0d49-419a-89ff-9260cf4be179",
"ReferenceType": "sample string 8",
"CustomProperties": {
"CatalogItemID": "bd58a15d-89b2-4163-bf86-7221d9117618",
"SupplierID": 1,
"PaymentMethodID": 2,
"PaymentID": "c72cf650-bc76-462f-817e-559d1f456363",
"TaxID": "a1f781c6-12bb-4a6d-beca-b05930a92527"
}
}
]
}
]