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": "77082612-0b76-4599-92d9-e48cb709c8ac",
"TransactionDateUTC": "2026-01-05T01:21:17.2762507+00:00",
"CreatedByUserID": 3,
"CreatedByUserName": "sample string 4",
"Entries": [
{
"LineNumber": 1,
"AccountID": "7bb13011-eec2-4468-b357-6d855a07784a",
"EntityID": 3,
"Debit": 4.1,
"Credit": 5.1,
"Memo": "sample string 6",
"ReferenceID": "b720e6e4-026f-4840-a305-1adea299da9d",
"ReferenceType": "sample string 8",
"CustomProperties": {
"CatalogItemID": "b6b03651-6882-4868-a662-d1811109ed8c",
"SupplierID": 1,
"PaymentMethodID": 2,
"PaymentID": "3e7b6f8c-5797-49a9-8eb4-e12e963c7f3f",
"TaxID": "2e44f92a-a078-405a-a468-ea12a9305b9f"
}
},
{
"LineNumber": 1,
"AccountID": "7bb13011-eec2-4468-b357-6d855a07784a",
"EntityID": 3,
"Debit": 4.1,
"Credit": 5.1,
"Memo": "sample string 6",
"ReferenceID": "b720e6e4-026f-4840-a305-1adea299da9d",
"ReferenceType": "sample string 8",
"CustomProperties": {
"CatalogItemID": "b6b03651-6882-4868-a662-d1811109ed8c",
"SupplierID": 1,
"PaymentMethodID": 2,
"PaymentID": "3e7b6f8c-5797-49a9-8eb4-e12e963c7f3f",
"TaxID": "2e44f92a-a078-405a-a468-ea12a9305b9f"
}
}
]
},
{
"Id": "77082612-0b76-4599-92d9-e48cb709c8ac",
"TransactionDateUTC": "2026-01-05T01:21:17.2762507+00:00",
"CreatedByUserID": 3,
"CreatedByUserName": "sample string 4",
"Entries": [
{
"LineNumber": 1,
"AccountID": "7bb13011-eec2-4468-b357-6d855a07784a",
"EntityID": 3,
"Debit": 4.1,
"Credit": 5.1,
"Memo": "sample string 6",
"ReferenceID": "b720e6e4-026f-4840-a305-1adea299da9d",
"ReferenceType": "sample string 8",
"CustomProperties": {
"CatalogItemID": "b6b03651-6882-4868-a662-d1811109ed8c",
"SupplierID": 1,
"PaymentMethodID": 2,
"PaymentID": "3e7b6f8c-5797-49a9-8eb4-e12e963c7f3f",
"TaxID": "2e44f92a-a078-405a-a468-ea12a9305b9f"
}
},
{
"LineNumber": 1,
"AccountID": "7bb13011-eec2-4468-b357-6d855a07784a",
"EntityID": 3,
"Debit": 4.1,
"Credit": 5.1,
"Memo": "sample string 6",
"ReferenceID": "b720e6e4-026f-4840-a305-1adea299da9d",
"ReferenceType": "sample string 8",
"CustomProperties": {
"CatalogItemID": "b6b03651-6882-4868-a662-d1811109ed8c",
"SupplierID": 1,
"PaymentMethodID": 2,
"PaymentID": "3e7b6f8c-5797-49a9-8eb4-e12e963c7f3f",
"TaxID": "2e44f92a-a078-405a-a468-ea12a9305b9f"
}
}
]
}
]