Skip to content

Latest commit

 

History

History
74 lines (66 loc) · 1.17 KB

college_department.md

File metadata and controls

74 lines (66 loc) · 1.17 KB

Find Departments By College.

GET /colleges/{collegeId}/departments

Description

Find departments by college.

Request

Headers

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

Example

GET /colleges/deptI1I1000I0/departments

Response

Formats

  • json

Structure

Field Name Type Value Description
result list Department Object
name String department name
id String department Id

Example

[
	{
		"name" : "文學院",
		"id" : "deptI1I1000I0"
	}, {
		"name" : "中國文學系",
		"id" : "deptI1I1001I0"
	}
]