PUT api/AccountTrans/Tran
Request Information
URI Parameters
None.
Body Parameters
AccountTransData| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| BankAccountID | integer |
None. |
|
| TransDate | date |
None. |
|
| TransNumber | string |
None. |
|
| TransType | string |
None. |
|
| Description | string |
None. |
|
| AmountDebit | decimal number |
None. |
|
| AmountCredit | decimal number |
None. |
|
| Balance | decimal number |
None. |
|
| CheckNumber | string |
None. |
|
| Category | string |
None. |
|
| SubCategory | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"ID": 1,
"BankAccountID": 2,
"TransDate": "2026-02-10T16:13:22.9547552-08:00",
"TransNumber": "sample string 3",
"TransType": "sample string 4",
"Description": "sample string 5",
"AmountDebit": 6.0,
"AmountCredit": 7.0,
"Balance": 8.0,
"CheckNumber": "sample string 9",
"Category": "sample string 10",
"SubCategory": "sample string 11"
}
text/xml
Sample:
<AccountTransData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SAS.DAL"> <AmountCredit>7</AmountCredit> <AmountDebit>6</AmountDebit> <Balance>8</Balance> <BankAccountID>2</BankAccountID> <Category>sample string 10</Category> <CheckNumber>sample string 9</CheckNumber> <Description>sample string 5</Description> <ID>1</ID> <SubCategory>sample string 11</SubCategory> <TransDate>2026-02-10T16:13:22.9547552-08:00</TransDate> <TransNumber>sample string 3</TransNumber> <TransType>sample string 4</TransType> </AccountTransData>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |