GET api/JournalHistory/{DB}/{Account}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| DB | string |
Required |
|
| Account | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of JournalHistoryData| Name | Description | Type | Additional information |
|---|---|---|---|
| TransDate | date |
None. |
|
| Account | string |
None. |
|
| Debit | decimal number |
None. |
|
| Credit | decimal number |
None. |
|
| Description | string |
None. |
|
| DocRefNo | string |
None. |
|
| CurrencyID | integer |
None. |
|
| User | string |
None. |
|
| ExchangeRate | decimal number |
None. |
|
| ForeignCredit | decimal number |
None. |
|
| ForeignDebit | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"TransDate": "2026-08-12T10:41:13.5622161+00:00",
"Account": "sample string 2",
"Debit": 3.0,
"Credit": 4.0,
"Description": "sample string 5",
"DocRefNo": "sample string 6",
"CurrencyID": 7,
"User": "sample string 8",
"ExchangeRate": 9.0,
"ForeignCredit": 10.0,
"ForeignDebit": 11.0
},
{
"TransDate": "2026-08-12T10:41:13.5622161+00:00",
"Account": "sample string 2",
"Debit": 3.0,
"Credit": 4.0,
"Description": "sample string 5",
"DocRefNo": "sample string 6",
"CurrencyID": 7,
"User": "sample string 8",
"ExchangeRate": 9.0,
"ForeignCredit": 10.0,
"ForeignDebit": 11.0
}
]
application/xml, text/xml
Sample:
<ArrayOfJournalHistoryData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AdroitERPWebApis">
<JournalHistoryData>
<Account>sample string 2</Account>
<Credit>4</Credit>
<CurrencyID>7</CurrencyID>
<Debit>3</Debit>
<Description>sample string 5</Description>
<DocRefNo>sample string 6</DocRefNo>
<ExchangeRate>9</ExchangeRate>
<ForeignCredit>10</ForeignCredit>
<ForeignDebit>11</ForeignDebit>
<TransDate>2026-08-12T10:41:13.5622161+00:00</TransDate>
<User>sample string 8</User>
</JournalHistoryData>
<JournalHistoryData>
<Account>sample string 2</Account>
<Credit>4</Credit>
<CurrencyID>7</CurrencyID>
<Debit>3</Debit>
<Description>sample string 5</Description>
<DocRefNo>sample string 6</DocRefNo>
<ExchangeRate>9</ExchangeRate>
<ForeignCredit>10</ForeignCredit>
<ForeignDebit>11</ForeignDebit>
<TransDate>2026-08-12T10:41:13.5622161+00:00</TransDate>
<User>sample string 8</User>
</JournalHistoryData>
</ArrayOfJournalHistoryData>