The request body is of type CloseTransactions.
Request Body Parameters
| Name | Description | Data Type |
|---|---|---|
| serviceAuthentication | ServiceAuthenticationModel | |
| transactionCloseRequest | TransactionCloseRequestModel |

Overview
![]() |
|
| Method | CloseTransactions |
The request body is of type CloseTransactions.
| Name | Description | Data Type |
|---|---|---|
| serviceAuthentication | ServiceAuthenticationModel | |
| transactionCloseRequest | TransactionCloseRequestModel |

![]() |
|
The response body is of type CloseTransactionsResponse.
| Name | Description | Data Type |
|---|---|---|
| CloseTransactionsResult | DefaultServiceReturnModel |

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