POST api/BookNow/ATMbooknow
Request Information
URI Parameters
None.
Body Parameters
ATMBookNowName | Description | Type | Additional information |
---|---|---|---|
OrderType | globally unique identifier |
Required |
|
UsrID | globally unique identifier |
Required |
|
DelLocID | globally unique identifier |
Required |
|
AmountDetails | ATMItemDetails |
Required |
|
ScheduleDelivery | date |
Required |
Request Formats
application/json, text/json
Sample:
{ "OrderType": "241d46c5-baa2-4faa-b95e-9b52cc8b0a82", "UsrID": "0b390ed9-3aeb-4ee5-8edb-ecef9d7bf281", "DelLocID": "f313efde-1ef6-4e40-ab6a-edc9c3325e6a", "AmountDetails": { "TranscationType": 1, "RequestedAmount": 1.1, "ServiceCharge": 2.1, "DeliveryCharge": 3.1, "FinalAmount": 4.1 }, "ScheduleDelivery": "2025-03-14T15:34:24.5607035+00:00" }
application/xml, text/xml
Sample:
<ATMBookNow xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TheanAPI.DTO"> <AmountDetails> <DeliveryCharge>3.1</DeliveryCharge> <FinalAmount>4.1</FinalAmount> <RequestedAmount>1.1</RequestedAmount> <ServiceCharge>2.1</ServiceCharge> <TranscationType>Withdrawal</TranscationType> </AmountDetails> <DelLocID>f313efde-1ef6-4e40-ab6a-edc9c3325e6a</DelLocID> <OrderType>241d46c5-baa2-4faa-b95e-9b52cc8b0a82</OrderType> <ScheduleDelivery>2025-03-14T15:34:24.5607035+00:00</ScheduleDelivery> <UsrID>0b390ed9-3aeb-4ee5-8edb-ecef9d7bf281</UsrID> </ATMBookNow>
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>