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": "ec28b7fd-9a24-48af-b20c-4729d3cd907f",
"TransactionDateUTC": "2026-01-29T10:12:14.8962057+00:00",
"CreatedByUserID": 3,
"CreatedByUserName": "sample string 4",
"Entries": [
{
"LineNumber": 1,
"AccountID": "b6d10c7c-80fb-43fb-a74c-8bd9042d4297",
"EntityID": 3,
"Debit": 4.1,
"Credit": 5.1,
"Memo": "sample string 6",
"ReferenceID": "10829bc9-4dca-44d9-8e7a-40b80663e864",
"ReferenceType": "sample string 8",
"CustomProperties": {
"CatalogItemID": "9a667dfc-bbf9-4502-bdf2-0f4dfd8fae8d",
"SupplierID": 1,
"PaymentMethodID": 2,
"PaymentID": "292e1c48-1fcd-49d6-8d7d-fd4e933c23f7",
"TaxID": "69916439-f1ba-44bc-9f6f-2de9fc97cca6"
}
},
{
"LineNumber": 1,
"AccountID": "b6d10c7c-80fb-43fb-a74c-8bd9042d4297",
"EntityID": 3,
"Debit": 4.1,
"Credit": 5.1,
"Memo": "sample string 6",
"ReferenceID": "10829bc9-4dca-44d9-8e7a-40b80663e864",
"ReferenceType": "sample string 8",
"CustomProperties": {
"CatalogItemID": "9a667dfc-bbf9-4502-bdf2-0f4dfd8fae8d",
"SupplierID": 1,
"PaymentMethodID": 2,
"PaymentID": "292e1c48-1fcd-49d6-8d7d-fd4e933c23f7",
"TaxID": "69916439-f1ba-44bc-9f6f-2de9fc97cca6"
}
}
]
},
{
"Id": "ec28b7fd-9a24-48af-b20c-4729d3cd907f",
"TransactionDateUTC": "2026-01-29T10:12:14.8962057+00:00",
"CreatedByUserID": 3,
"CreatedByUserName": "sample string 4",
"Entries": [
{
"LineNumber": 1,
"AccountID": "b6d10c7c-80fb-43fb-a74c-8bd9042d4297",
"EntityID": 3,
"Debit": 4.1,
"Credit": 5.1,
"Memo": "sample string 6",
"ReferenceID": "10829bc9-4dca-44d9-8e7a-40b80663e864",
"ReferenceType": "sample string 8",
"CustomProperties": {
"CatalogItemID": "9a667dfc-bbf9-4502-bdf2-0f4dfd8fae8d",
"SupplierID": 1,
"PaymentMethodID": 2,
"PaymentID": "292e1c48-1fcd-49d6-8d7d-fd4e933c23f7",
"TaxID": "69916439-f1ba-44bc-9f6f-2de9fc97cca6"
}
},
{
"LineNumber": 1,
"AccountID": "b6d10c7c-80fb-43fb-a74c-8bd9042d4297",
"EntityID": 3,
"Debit": 4.1,
"Credit": 5.1,
"Memo": "sample string 6",
"ReferenceID": "10829bc9-4dca-44d9-8e7a-40b80663e864",
"ReferenceType": "sample string 8",
"CustomProperties": {
"CatalogItemID": "9a667dfc-bbf9-4502-bdf2-0f4dfd8fae8d",
"SupplierID": 1,
"PaymentMethodID": 2,
"PaymentID": "292e1c48-1fcd-49d6-8d7d-fd4e933c23f7",
"TaxID": "69916439-f1ba-44bc-9f6f-2de9fc97cca6"
}
}
]
}
]