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": "9f47c7c6-d4a0-4f54-9c34-db6a377821bf",
"TransactionDateUTC": "2026-04-05T02:50:04.0516131+00:00",
"CreatedByUserID": 3,
"CreatedByUserName": "sample string 4",
"Entries": [
{
"LineNumber": 1,
"AccountID": "1c046080-c2a4-4b92-9fe0-ff8b238fc180",
"EntityID": 3,
"Debit": 4.1,
"Credit": 5.1,
"Memo": "sample string 6",
"ReferenceID": "d843056b-965b-4688-9701-65b2db9d08ff",
"ReferenceType": "sample string 8",
"CustomProperties": {
"CatalogItemID": "d5766178-d8d8-444b-8ea4-4966b4b1a222",
"SupplierID": 1,
"PaymentMethodID": 2,
"PaymentID": "5651ccc8-2c53-410d-868e-b0c6373ee3d6",
"TaxID": "f2190157-43b7-4c4b-82e6-1e1f7b3bf3c6"
}
},
{
"LineNumber": 1,
"AccountID": "1c046080-c2a4-4b92-9fe0-ff8b238fc180",
"EntityID": 3,
"Debit": 4.1,
"Credit": 5.1,
"Memo": "sample string 6",
"ReferenceID": "d843056b-965b-4688-9701-65b2db9d08ff",
"ReferenceType": "sample string 8",
"CustomProperties": {
"CatalogItemID": "d5766178-d8d8-444b-8ea4-4966b4b1a222",
"SupplierID": 1,
"PaymentMethodID": 2,
"PaymentID": "5651ccc8-2c53-410d-868e-b0c6373ee3d6",
"TaxID": "f2190157-43b7-4c4b-82e6-1e1f7b3bf3c6"
}
}
]
},
{
"Id": "9f47c7c6-d4a0-4f54-9c34-db6a377821bf",
"TransactionDateUTC": "2026-04-05T02:50:04.0516131+00:00",
"CreatedByUserID": 3,
"CreatedByUserName": "sample string 4",
"Entries": [
{
"LineNumber": 1,
"AccountID": "1c046080-c2a4-4b92-9fe0-ff8b238fc180",
"EntityID": 3,
"Debit": 4.1,
"Credit": 5.1,
"Memo": "sample string 6",
"ReferenceID": "d843056b-965b-4688-9701-65b2db9d08ff",
"ReferenceType": "sample string 8",
"CustomProperties": {
"CatalogItemID": "d5766178-d8d8-444b-8ea4-4966b4b1a222",
"SupplierID": 1,
"PaymentMethodID": 2,
"PaymentID": "5651ccc8-2c53-410d-868e-b0c6373ee3d6",
"TaxID": "f2190157-43b7-4c4b-82e6-1e1f7b3bf3c6"
}
},
{
"LineNumber": 1,
"AccountID": "1c046080-c2a4-4b92-9fe0-ff8b238fc180",
"EntityID": 3,
"Debit": 4.1,
"Credit": 5.1,
"Memo": "sample string 6",
"ReferenceID": "d843056b-965b-4688-9701-65b2db9d08ff",
"ReferenceType": "sample string 8",
"CustomProperties": {
"CatalogItemID": "d5766178-d8d8-444b-8ea4-4966b4b1a222",
"SupplierID": 1,
"PaymentMethodID": 2,
"PaymentID": "5651ccc8-2c53-410d-868e-b0c6373ee3d6",
"TaxID": "f2190157-43b7-4c4b-82e6-1e1f7b3bf3c6"
}
}
]
}
]