Term type

Represents a single academic term type.

URI
/api/v10/academic-terms/types/ID

GET 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

HeaderValueDescription
Content-Typeapplication/jsonThe media type of the resource
Content-Length1234The size of the response body in bytes

Response codes

Response codeDescription
200 OKThe academic term data type was successfully returned
404 Not FoundThe academic term type was not found

Example response

Response
{
  "name": "Fall semester"
}