POST api/OM/ATMActiveWithDrawl
Request Information
URI Parameters
None.
Body Parameters
ActiveATMWithdrawDTOName | Description | Type | Additional information |
---|---|---|---|
OrderID | string |
None. |
|
Status | OrderStatus |
None. |
|
DeliveryBoy | globally unique identifier |
None. |
|
DenominationsJSON | string |
None. |
|
AmountToCollect | decimal number |
None. |
|
AmountToDeliver | decimal number |
None. |
|
Comments | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "OrderID": "sample string 1", "Status": 0, "DeliveryBoy": "8a6214d2-9ef7-4bfa-8565-cb087a1252d4", "DenominationsJSON": "sample string 3", "AmountToCollect": 4.1, "AmountToDeliver": 5.1, "Comments": "sample string 6" }
application/xml, text/xml
Sample:
<ActiveATMWithdrawDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TheanAPI.DTO"> <AmountToCollect>4.1</AmountToCollect> <AmountToDeliver>5.1</AmountToDeliver> <Comments>sample string 6</Comments> <DeliveryBoy>8a6214d2-9ef7-4bfa-8565-cb087a1252d4</DeliveryBoy> <DenominationsJSON>sample string 3</DenominationsJSON> <OrderID>sample string 1</OrderID> <Status>Pending</Status> </ActiveATMWithdrawDTO>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResponseDtoOfObjectName | Description | Type | Additional information |
---|---|---|---|
Status_cd | boolean |
None. |
|
Data | Object |
None. |
|
status_Desc | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "Status_cd": true, "Data": {}, "status_Desc": "sample string 3" }
application/xml, text/xml
Sample:
<ResponseDtoOfanyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TheanAPI.DTO"> <Data /> <Status_cd>true</Status_cd> <status_Desc>sample string 3</status_Desc> </ResponseDtoOfanyType>