Overview
This service call updates transaction data stored in the system
Method
| Method |
URL |
Description |
| POST |
/api/Sessions/V2/UpdateTransaction |
The POST method submits the
id and transaction data as part of the call to update the
DocViewer session. |
Parameters
| Name |
Type |
Constraints |
Description |
| accountId |
integer |
required |
An element indicating the Administration account to
associate the request. |
| Document |
string |
required |
The document display name associated with the
transaction being updated |
| TransactionData |
string |
|
Transaction file to use with the new DocViewer
session |
Sample Request
{
"Account" : {
"Id":1
},
"Document": {
"Id":"BaseLibrary.PKGD.AuthorizationForAutomaticDepositToMultipleAccounts"
},
"TransactionData" : "base64data"
}
Sample Response
{
"transactionData": "base64data"
"changedDataPoints": [
{
"xPath": "string",
"changeType": 0,
"newValue": "string",
"oldValue": "string",
"index": "string",
"field": "string",
"prompt": "string"
}
]
}