Term types

Represents a list of all academic term types.

URI
/api/v10/academic-terms/types

GET List term types

List all academic term types configured in DreamApply.

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
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"

Response headers

HeaderValueDescription
Content-Typeapplication/jsonThe media type of the resource
Content-Length1234The size of the response body in bytes
X-Count2The number of available academic term types

Response codes

Response codeDescription
200 OKThe list of transactions was successfully returned

Example response

Response
{
  "1": {
    "name": "Fall semester"
  },
  "2": {
    "name": "Spring semester"
  }
}