GET networks/{id}
Get a network based on its id
Request Information
Parameters
Name | Description | Additional information |
---|---|---|
id | the network id |
Define this parameter in the request URI. |
Response Information
null if id cannot be found
Response body formats
application/json, text/json
Sample:
{ "id": "sample string 1", "name": "sample string 2", "location": "sample string 3", "contact": "sample string 4", "logo": "sample string 5", "office": null, "sso_enabled": true, "sso_url": "sample string 7", "fitness_enabled": true, "club_enabled": true, "domains": [ "sample string 1", "sample string 2", "sample string 3" ], "payment_gateway": 0, "type": 0, "intramural_name": "sample string 10", "club_name": "sample string 11", "fitness_name": "sample string 12" }
application/xml, text/xml
Sample:
<NetworkDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/imLeagues.API.DTO"> <club_enabled>true</club_enabled> <club_name>sample string 11</club_name> <contact>sample string 4</contact> <domains xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:string>sample string 1</d2p1:string> <d2p1:string>sample string 2</d2p1:string> <d2p1:string>sample string 3</d2p1:string> </domains> <fitness_enabled>true</fitness_enabled> <fitness_name>sample string 12</fitness_name> <id>sample string 1</id> <intramural_name>sample string 10</intramural_name> <location>sample string 3</location> <logo>sample string 5</logo> <name>sample string 2</name> <payment_gateway>IMLeagues</payment_gateway> <sso_enabled>true</sso_enabled> <sso_url>sample string 7</sso_url> <type>Public</type> </NetworkDto>