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": "095855f1-b119-47b0-bd09-c5b52df9880c",
"TransactionDateUTC": "2026-04-01T11:15:36.3775466+00:00",
"CreatedByUserID": 3,
"CreatedByUserName": "sample string 4",
"Entries": [
{
"LineNumber": 1,
"AccountID": "6782a97a-55a5-410a-b735-c6eb51f200eb",
"EntityID": 3,
"Debit": 4.1,
"Credit": 5.1,
"Memo": "sample string 6",
"ReferenceID": "02a59dba-4999-4124-9c2c-f586dda32c9f",
"ReferenceType": "sample string 8",
"CustomProperties": {
"CatalogItemID": "023f7264-4370-4bbb-861a-df85037e0e9d",
"SupplierID": 1,
"PaymentMethodID": 2,
"PaymentID": "eabc94f0-9f0d-4a46-8dd1-9c87940a0b5f",
"TaxID": "fbd20be0-2a01-4b06-95ba-28e7db5b574c"
}
},
{
"LineNumber": 1,
"AccountID": "6782a97a-55a5-410a-b735-c6eb51f200eb",
"EntityID": 3,
"Debit": 4.1,
"Credit": 5.1,
"Memo": "sample string 6",
"ReferenceID": "02a59dba-4999-4124-9c2c-f586dda32c9f",
"ReferenceType": "sample string 8",
"CustomProperties": {
"CatalogItemID": "023f7264-4370-4bbb-861a-df85037e0e9d",
"SupplierID": 1,
"PaymentMethodID": 2,
"PaymentID": "eabc94f0-9f0d-4a46-8dd1-9c87940a0b5f",
"TaxID": "fbd20be0-2a01-4b06-95ba-28e7db5b574c"
}
}
]
},
{
"Id": "095855f1-b119-47b0-bd09-c5b52df9880c",
"TransactionDateUTC": "2026-04-01T11:15:36.3775466+00:00",
"CreatedByUserID": 3,
"CreatedByUserName": "sample string 4",
"Entries": [
{
"LineNumber": 1,
"AccountID": "6782a97a-55a5-410a-b735-c6eb51f200eb",
"EntityID": 3,
"Debit": 4.1,
"Credit": 5.1,
"Memo": "sample string 6",
"ReferenceID": "02a59dba-4999-4124-9c2c-f586dda32c9f",
"ReferenceType": "sample string 8",
"CustomProperties": {
"CatalogItemID": "023f7264-4370-4bbb-861a-df85037e0e9d",
"SupplierID": 1,
"PaymentMethodID": 2,
"PaymentID": "eabc94f0-9f0d-4a46-8dd1-9c87940a0b5f",
"TaxID": "fbd20be0-2a01-4b06-95ba-28e7db5b574c"
}
},
{
"LineNumber": 1,
"AccountID": "6782a97a-55a5-410a-b735-c6eb51f200eb",
"EntityID": 3,
"Debit": 4.1,
"Credit": 5.1,
"Memo": "sample string 6",
"ReferenceID": "02a59dba-4999-4124-9c2c-f586dda32c9f",
"ReferenceType": "sample string 8",
"CustomProperties": {
"CatalogItemID": "023f7264-4370-4bbb-861a-df85037e0e9d",
"SupplierID": 1,
"PaymentMethodID": 2,
"PaymentID": "eabc94f0-9f0d-4a46-8dd1-9c87940a0b5f",
"TaxID": "fbd20be0-2a01-4b06-95ba-28e7db5b574c"
}
}
]
}
]