Tracker (global)
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 tracker configured in DreamApply. For a specific tracker assigned to a specific applicant, see Tracker.
URI
/api/v10/applicants/trackers/IDGET Get a tracker
Retrieve information about a specific tracker configured in DreamApply.
Syntax
GET /api/v10/applicants/trackers/1
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/applicants/trackers/1"Response headers
| Header | Value | Description |
|---|---|---|
Content-Type | application/json | The media type of the resource |
Content-Length | 1456 | The size of the response body in bytes |
Response codes
| Response code | Description |
|---|---|
200 OK | The tracker exists |
404 Not Found | The tracker was not found |
Example response
Response
{
"id": 37,
"created": "2025-07-29T12:53:20+00:00",
"code": "DISCOUNT10",
"notes": "Some notes",
"reduction": {
"reduction": "Percent",
"percent": 10
}
}DELETE Delete a tracker
Remove a tracker from DreamApply and unassign it from all applicants.
Syntax
DELETE /api/v10/applicants/trackers/1
Host: apply.example.edu
Authorization: DREAM apikey="..."Example request
Request
curl
curl \
-X DELETE \
-H "Authorization: DREAM apikey=\"YOUR-API-KEY\"" \
"https://apply.example.edu/api/v10/applicants/trackers/1"Response headers
| Header | Value | Description |
|---|---|---|
Content-Type | text/plain | The media type of the resource |
Content-Length | 0 | The size of the response body in bytes |
Response codes
| Response code | Description |
|---|---|
204 No Content | The tracker was successfully deleted |
404 Not Found | The tracker was not found |