GET api/Colleges
Get a list of all colleges
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of CollegeName | Description | Type | Additional information |
---|---|---|---|
id |
The unique identifier for the school |
integer |
None. |
college_name |
The name of the school |
string |
None. |
Response Formats
application/json, text/json
Sample:
[ { "id": 1, "college_name": "sample string 2" }, { "id": 1, "college_name": "sample string 2" } ]
text/xml
Sample:
<ArrayOfCollege xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JoomieApi.Models"> <College> <college_name>sample string 2</college_name> <id>1</id> </College> <College> <college_name>sample string 2</college_name> <id>1</id> </College> </ArrayOfCollege>