POST api/v1/transactions/completetransaction
Request Information
URI Parameters
None.
Body Parameters
TransactionCustomerRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| TransactionId | integer |
None. |
|
| CustomerAddressId | integer |
None. |
|
| CustomerPaymentMethodId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"TransactionId": 1,
"CustomerAddressId": 2,
"CustomerPaymentMethodId": 3
}
application/xml, text/xml
Sample:
<TransactionCustomerRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MWS.Core.Models.Branches"> <CustomerAddressId>2</CustomerAddressId> <CustomerPaymentMethodId>3</CustomerPaymentMethodId> <TransactionId>1</TransactionId> </TransactionCustomerRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResponseModelOfBranchTransaction| Name | Description | Type | Additional information |
|---|---|---|---|
| Success | boolean |
None. |
|
| Message | string |
None. |
|
| Data | BranchTransaction |
None. |
|
| Pagination | Pagination |
None. |
Response Formats
application/json, text/json
Sample:
Sample not available.