Get Discipline Information

GET /discipline/:disciplineID



Enables the retrieval of the discipline information for a given ID.

Resource URL

https://api.ideasystem.org/v1/discipline/12

Response

The response will be an HTTP 200 along with a JSON body that describes the discipline details.

Response Parameters (JSON Body)

id
Example: "id": 2
The ID for this discipline code.
code
Example: "code": 101
The code for this discipline.
name
Example: "name": "Agricultural Business and Management"
The name for this discipline code.
abbrev
Example: "abbrev": "AGBUSMT"
The abbreviated name for this discipline code.

Example

This request will get the information for the discipline with ID 1.

Request

GET /v1/discipline/1

Response (as JSON)

HTTP 200
{
    {
    	"id": 1,
    	"code": 100,
    	"name": "Agricultural Business AND Production",
    	"abbrev": "AGBUSPR"
    }
}