GET api/Cards?ip={ip}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
ip | string |
Required |
Body Parameters
None.
Response Information
Resource Description
GameDeviceName | Description | Type | Additional information |
---|---|---|---|
Id | integer |
None. |
|
Name | string |
None. |
|
IP_Address | string |
None. |
|
Price | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
{ "Id": 1, "Name": "sample string 2", "IP_Address": "sample string 3", "Price": 4.0 }
text/html
Sample:
{"Id":1,"Name":"sample string 2","IP_Address":"sample string 3","Price":4.0}
application/xml, text/xml
Sample:
<GameDevice xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Gregsys.Domain.Models.Cards"> <IP_Address>sample string 3</IP_Address> <Id>1</Id> <Name>sample string 2</Name> <Price>4</Price> </GameDevice>