GET api/machine/list
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of MachineName | Description | Type | Additional information |
---|---|---|---|
ID | integer |
None. |
|
Name | string |
None. |
|
IP | string |
None. |
|
Port | integer |
None. |
Response Formats
application/json, text/json
Sample:
[ { "ID": 1, "Name": "sample string 2", "IP": "sample string 3", "Port": 4 }, { "ID": 1, "Name": "sample string 2", "IP": "sample string 3", "Port": 4 } ]
application/xml, text/xml
Sample:
<ArrayOfMachine xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FingerAPI.Models"> <Machine> <ID>1</ID> <IP>sample string 3</IP> <Name>sample string 2</Name> <Port>4</Port> </Machine> <Machine> <ID>1</ID> <IP>sample string 3</IP> <Name>sample string 2</Name> <Port>4</Port> </Machine> </ArrayOfMachine>