GET api/federations

Queryable action. Gets all federations in the IBIS system

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

A list of Federation objects

Collection of 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"
  },
  {
    "FederationID": 1,
    "Name": "sample string 2"
  }
]

application/xml, text/xml

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