Skip to content

Latest commit

 

History

History
78 lines (70 loc) · 1.12 KB

college.md

File metadata and controls

78 lines (70 loc) · 1.12 KB

Find All Colleges.

GET /colleges

Description

Find all colleges.

Request

Headers

Name Required Description
X-NCU-API-TOKEN yes Your API token

Example

GET /colleges

Response

Formats

  • json

Structure

Field Name Type Value Description
result list College Object
name String college name
id String college Id

Example

{
	"result" : 
	[
		{
			"name" : "文學院",
			"id" : "deptI1I1000I0"
		},
		{
			"name" : "理學院",
			"id" : "deptI1I2000I0"
		}
	]
}