The request body is of type GetTransactionsUpdateable.
Request Body Parameters
| Name | Description | Data Type |
|---|---|---|
| serviceAuthentication | ServiceAuthenticationModel | |
| transactionUpdateableRequest | TransactionUpdateableRequestModel |

Overview
![]() |
|
| Method | GetTransactionsUpdateable |
The request body is of type GetTransactionsUpdateable.
| Name | Description | Data Type |
|---|---|---|
| serviceAuthentication | ServiceAuthenticationModel | |
| transactionUpdateableRequest | TransactionUpdateableRequestModel |

![]() |
|
The response body is of type GetTransactionsUpdateableResponse.
| Name | Description | Data Type |
|---|---|---|
| GetTransactionsUpdateableResult | TransactionUpdateableServiceReturnModel |

![]() |
|
var model = new TransactionUpdateableRequestModel() { IDs = new int[] { 1234567890 } }; var results = serviceClient.GetTransactionsUpdateable(sa, model); if (results.IsSuccessful) { //do work... } else { //handle error }
Dim model = New TransactionUpdateableRequestModel() With { .IDs = New Integer() {1234567890} } Dim results = serviceClient.GetTransactionsUpdateable(sa, model) If Not results.IsSuccessful Then 'do work... Else 'handle error End If