POST api/ATM/GetAtmBookDetails

Request Information

URI Parameters

None.

Body Parameters

GetATMDTO
NameDescriptionTypeAdditional information
Amount

decimal number

None.

DeliveryAddress

globally unique identifier

None.

UserGUID

globally unique identifier

None.

Request Formats

application/json, text/json

Sample:
{
  "Amount": 1.1,
  "DeliveryAddress": "2fd2d4f0-fb0a-4285-957e-d0e2c4a4e384",
  "UserGUID": "a608e422-f675-4ae8-8cfe-41d6409e7e4d"
}

application/xml, text/xml

Sample:
<GetATMDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TheanAPI.DTO">
  <Amount>1.1</Amount>
  <DeliveryAddress>2fd2d4f0-fb0a-4285-957e-d0e2c4a4e384</DeliveryAddress>
  <UserGUID>a608e422-f675-4ae8-8cfe-41d6409e7e4d</UserGUID>
</GetATMDTO>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ResponseDtoOfObject
NameDescriptionTypeAdditional 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>