Description: Retrieve servers
URL: http://{your-server-url}/api/v1/core/servers
Method: GET
Token Required: True
content-type: application/json or content-type: application/xml
token: {token}
currentaccountid: {accountid - optional and default value is user's own account}
Portal Administrator, Account Administrator, Account Owner
Type: Nexus.AppSpace.Service.Contract.Model.Enums.Rights.Rights
| Right | Require |
|---|---|
| Account_Owner | Yes |
| Parameter | Type | Nullable | Description |
|---|---|---|---|
| ip | string | True | |
| name | string | True | |
| includebinding | bool | True | include server bindings, default = false |
| sort | string | True | sorting fields: id, createddate, lastupdated, name. Comma seperated values, unary negative to imply descending sort order, e.g. sort=-id |
| page | int | True | page number |
| rpp | int | True | records per page, default = 50, max = 500 |
| guids | Guid[] | True | server guids, comma separated values, eg. guids=xxxx-xxxx-xxxx-xxxx,xxxx-xxxx-xxxx-xxxx |
Example: http://{your-server-url}/api/v1/core/servers?ip=string&name=string&sort=string
Type: Nexus.AppSpace.Service.Contract.Messages.AppSpaceIntegration.v1.Server.ServerResponse
| Parameter | Type |
|---|---|
| Response.TotalCount | int |
| Response.Servers | Nexus.AppSpace.Service.Contract.Model.DTO.AppSpaceIntegration.v1.Servers.Server[] |
| Response.CurrentPage | int |
| Response.TotalPages | int |
| Response.Rpp | int |
| Field | Name | Values |
|---|---|---|
| Type | Nexus.AppSpace.Service.Contract.Model.Enums.Server.ServerType | SmartHub = 0, Undefined = 1 |
<ServerResponse xmlns="http://schemas.datacontract.org/2004/07/Nexus.AppSpace.Service.Contract.Messages.AppSpaceIntegration.v1.Server" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<DebugMessage xmlns="http://schemas.datacontract.org/2004/07/Nexus.AppSpace.Service.Contract.Messages">String</DebugMessage>
<Errors xmlns="http://schemas.datacontract.org/2004/07/Nexus.AppSpace.Service.Contract.Messages">
<Error>
<Code>String</Code>
<Message>String</Message>
<StackTrace>String</StackTrace>
</Error>
</Errors>
<Status xmlns="http://schemas.datacontract.org/2004/07/Nexus.AppSpace.Service.Contract.Messages">Success</Status>
<CurrentPage>123</CurrentPage>
<Rpp>123</Rpp>
<Servers xmlns:a="http://schemas.datacontract.org/2004/07/Nexus.AppSpace.Service.Contract.Model.DTO.AppSpaceIntegration.v1.Servers">
<a:Server>
<a:AccountId>123</a:AccountId>
<a:CreatedDate>2014-06-17T16:58:36.7879247Z</a:CreatedDate>
<a:Description>String</a:Description>
<a:Guid>11111111-1111-1111-1111-111111111111</a:Guid>
<a:IP>String</a:IP>
<a:Id>123</a:Id>
<a:LastUpdated>2014-06-17T16:58:36.7879247Z</a:LastUpdated>
<a:MetaData xmlns:b="http://schemas.datacontract.org/2004/07/Nexus.AppSpace.Service.Contract.Model.DTO">
<b:KeyValuePair>
<b:Key>String</b:Key>
<b:Value>String</b:Value>
</b:KeyValuePair>
</a:MetaData>
<a:Name>String</a:Name>
<a:Priority>123</a:Priority>
<a:Provider>String</a:Provider>
<a:Type>Undefined</a:Type>
</a:Server>
</Servers>
<TotalCount>123</TotalCount>
<TotalPages>123</TotalPages>
</ServerResponse>
{
"DebugMessage":"String",
"Errors":[
{
"Code":"String",
"Message":"String",
"StackTrace":"String"
}
],
"Status":1,
"CurrentPage":123,
"Rpp":123,
"Servers":[
{
"AccountId":123,
"CreatedDate":"\/Date(1403024316787)\/",
"Description":"String",
"Guid":"11111111-1111-1111-1111-111111111111",
"IP":"String",
"Id":123,
"LastUpdated":"\/Date(1403024316787)\/",
"MetaData":[
{
"Key":"String",
"Value":"String"
}
],
"Name":"String",
"Priority":123,
"Provider":"String",
"Type":1
}
],
"TotalCount":123,
"TotalPages":123
}