Term types
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 list of all academic term types.
URI
/api/v10/academic-terms/typesGET 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
| Header | Value | Description |
|---|---|---|
Content-Type | application/json | The media type of the resource |
Content-Length | 1234 | The size of the response body in bytes |
X-Count | 2 | The number of available academic term types |
Response codes
| Response code | Description |
|---|---|
200 OK | The list of transactions was successfully returned |
Example response
Response
{
"1": {
"name": "Fall semester"
},
"2": {
"name": "Spring semester"
}
}