RetrieveServerBindingsByServerGuid

 

ServerService / RetrieveServerBindingsByServerGuid

 

Description: Retrieve server bindings by server Guid

URL: http://{your-server-url}/api/v1/core/servers/{serverguid}/bindings

Method: GET

Token Required: True


Request Headers:
currentaccountid: {accountid - optional and default value is user's own account}
content-type: application/json or content-type: application/xml
token: {token}
Required Roles:

Portal Administrator, Account Administrator, Account Owner

Rights:

Type: Nexus.AppSpace.Service.Contract.Model.Enums.Rights.Rights

Right Require
Account_Owner Yes

Request Query Parameters:
Parameter Type Nullable Description
resourceids int[] True comma separated values, eg. resourceids=1,2,3
guids Guid[] True binding guids, comma separated values, eg. guids=xxxx-xxxx-xxxx-xxxx,xxxx-xxxx-xxxx-xxxx
resourcetypeids int[] True comma separated values, eg. resourcetypeids=1,2,3
scopes Nexus.AppSpace.Service.Contract.Model.Enums.Resource.Scope True Available enums: networks,applications,players, comma separated values, eg. scopes=networks,applications
sort string True sorting fields: id. 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

Example: http://{your-server-url}/api/v1/core/servers/{serverguid}/bindings?resourceids=1,2,3&resourcetypeids=1,2,3&sort=string


Response:

Type: Nexus.AppSpace.Service.Contract.Messages.AppSpaceIntegration.v1.Server.ServerResponse

Parameter Type Comment
Response.TotalCount int
Response.ServerBindings Nexus.AppSpace.Service.Contract.Model.DTO.AppSpaceIntegration.v1.Servers.ServerBinding[] Server Object only return server's Guid and Name
Response.CurrentPage int
Response.TotalPages int
Response.Rpp int

Enums:
Field Name Values
Type Nexus.AppSpace.Service.Contract.Model.Enums.Server.ServerType SmartHub = 0, Undefined = 1

The following is an example response Xml body:
<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>
  <ServerBindings xmlns:a="http://schemas.datacontract.org/2004/07/Nexus.AppSpace.Service.Contract.Model.DTO.AppSpaceIntegration.v1.Servers">
    <a:ServerBinding>
      <a:AccountName>String</a:AccountName>
      <a:Guid>11111111-1111-1111-1111-111111111111</a:Guid>
      <a:Id>123</a:Id>
      <a:ResourceId>123</a:ResourceId>
      <a:ResourceName>String</a:ResourceName>
      <a:ResourceScope>Player_Groups</a:ResourceScope>
      <a:Server>
        <a:AccountId>123</a:AccountId>
        <a:CreatedDate>2014-06-17T16:58:36.8613382Z</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.8613382Z</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>
    </a:ServerBinding>
  </ServerBindings>
  <TotalCount>123</TotalCount>
  <TotalPages>123</TotalPages>
</ServerResponse>

The following is an example response Json body:
{
	"DebugMessage":"String",
	"Errors":[
		{
			"Code":"String",
			"Message":"String",
			"StackTrace":"String"
		}
	],
	"Status":1,
	"CurrentPage":123,
	"Rpp":123,
	"ServerBindings":[
		{
			"AccountName":"String",
			"Guid":"11111111-1111-1111-1111-111111111111",
			"Id":123,
			"ResourceId":123,
			"ResourceName":"String",
			"ResourceScope":23,
			"Server":{
				"AccountId":123,
				"CreatedDate":"\/Date(1403024316861)\/",
				"Description":"String",
				"Guid":"11111111-1111-1111-1111-111111111111",
				"IP":"String",
				"Id":123,
				"LastUpdated":"\/Date(1403024316861)\/",
				"MetaData":[
					{
						"Key":"String",
						"Value":"String"
					}
				],
				"Name":"String",
				"Priority":123,
				"Provider":"String",
				"Type":1
			}
		}
	],
	"TotalCount":123,
	"TotalPages":123
}