Term type
API version
Select a version to change the base URI
in syntax and code examples. Learn about versions:
in syntax and code examples. Learn about versions
Represents a single academic term type.
URI
/api/v10/academic-terms/types/IDGET Get a term type
Retrieve information about a specific academic term type.
Academic term types are templates used to create different types of academic terms. While the list of term types is finite, terms themselves are created for each academic year.
Syntax
GET /api/v10/academic-terms/types/123
Host: apply.example.edu
Authorization: DREAM apikey="..."Example request
Request
curl
curl \
-X GET \
-H "Authorization: DREAM apikey=\"YOUR-API-KEY\"" \
"https://apply.example.edu/api/v10/academic-terms/types/123"Response headers
| Header | Value | Description |
|---|---|---|
Content-Type | application/json | The media type of the resource |
Content-Length | 1234 | The size of the response body in bytes |
Response codes
| Response code | Description |
|---|---|
200 OK | The academic term data type was successfully returned |
404 Not Found | The academic term type was not found |
Example response
Response
{
"name": "Fall semester"
}