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": "14c22330-606d-4d2c-8b8f-17fd1509f433",
"TransactionDateUTC": "2025-11-21T14:20:42.9483186+00:00",
"CreatedByUserID": 3,
"CreatedByUserName": "sample string 4",
"Entries": [
{
"LineNumber": 1,
"AccountID": "58590d64-b16f-4fcf-b29d-1a98046b531d",
"EntityID": 3,
"Debit": 4.1,
"Credit": 5.1,
"Memo": "sample string 6",
"ReferenceID": "b0c8d04d-3c73-4fb1-b4bb-9e7fdc93403a",
"ReferenceType": "sample string 8",
"CustomProperties": {
"CatalogItemID": "aa4c73be-0867-44af-9d59-44d06050d460",
"SupplierID": 1,
"PaymentMethodID": 2,
"PaymentID": "d3dd23d0-b293-4448-aeec-40f15057ba81",
"TaxID": "2c2f4123-6f12-4926-8138-8315133696ad"
}
},
{
"LineNumber": 1,
"AccountID": "58590d64-b16f-4fcf-b29d-1a98046b531d",
"EntityID": 3,
"Debit": 4.1,
"Credit": 5.1,
"Memo": "sample string 6",
"ReferenceID": "b0c8d04d-3c73-4fb1-b4bb-9e7fdc93403a",
"ReferenceType": "sample string 8",
"CustomProperties": {
"CatalogItemID": "aa4c73be-0867-44af-9d59-44d06050d460",
"SupplierID": 1,
"PaymentMethodID": 2,
"PaymentID": "d3dd23d0-b293-4448-aeec-40f15057ba81",
"TaxID": "2c2f4123-6f12-4926-8138-8315133696ad"
}
}
]
},
{
"Id": "14c22330-606d-4d2c-8b8f-17fd1509f433",
"TransactionDateUTC": "2025-11-21T14:20:42.9483186+00:00",
"CreatedByUserID": 3,
"CreatedByUserName": "sample string 4",
"Entries": [
{
"LineNumber": 1,
"AccountID": "58590d64-b16f-4fcf-b29d-1a98046b531d",
"EntityID": 3,
"Debit": 4.1,
"Credit": 5.1,
"Memo": "sample string 6",
"ReferenceID": "b0c8d04d-3c73-4fb1-b4bb-9e7fdc93403a",
"ReferenceType": "sample string 8",
"CustomProperties": {
"CatalogItemID": "aa4c73be-0867-44af-9d59-44d06050d460",
"SupplierID": 1,
"PaymentMethodID": 2,
"PaymentID": "d3dd23d0-b293-4448-aeec-40f15057ba81",
"TaxID": "2c2f4123-6f12-4926-8138-8315133696ad"
}
},
{
"LineNumber": 1,
"AccountID": "58590d64-b16f-4fcf-b29d-1a98046b531d",
"EntityID": 3,
"Debit": 4.1,
"Credit": 5.1,
"Memo": "sample string 6",
"ReferenceID": "b0c8d04d-3c73-4fb1-b4bb-9e7fdc93403a",
"ReferenceType": "sample string 8",
"CustomProperties": {
"CatalogItemID": "aa4c73be-0867-44af-9d59-44d06050d460",
"SupplierID": 1,
"PaymentMethodID": 2,
"PaymentID": "d3dd23d0-b293-4448-aeec-40f15057ba81",
"TaxID": "2c2f4123-6f12-4926-8138-8315133696ad"
}
}
]
}
]