GET api/federations/{federationID}

Gets a federation from IBIS

Request Information

URI Parameters

NameDescriptionTypeAdditional information
federationID

The unique identifier of the federation to fetch

integer

Required

Body Parameters

None.

Response Information

Resource Description

A Federation object

Federation
NameDescriptionTypeAdditional information
FederationID

The federation's uniqe identifier

integer

None.

Name

The name of the federation

string

None.

Response Formats

application/json, text/json

Sample:
{
  "FederationID": 1,
  "Name": "sample string 2"
}

application/xml, text/xml

Sample:
<Federation xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IbisApi.Models">
  <FederationID>1</FederationID>
  <Name>sample string 2</Name>
</Federation>