Trackers
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 trackers assigned to an applicant. For a list of trackers configured in DreamApply, see Trackers (global).
URI
/api/v10/applicants/ID/trackersGET List trackers
List all trackers assigned to an applicant.
This API request does not return the trackers themselves. It represents relationships between an applicant and trackers. Follow the tracker URI in the response to retrieve further information about a specific tracker.
Syntax
GET /api/v10/applicants/123/trackers
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/123/trackers"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 returned trackers |
Response codes
| Response code | Description |
|---|---|
200 OK | The list of trackers assigned to the applicant was successfully returned |
Example response
Response
{
"1": {
"assigned": "2025-10-03T13:00:42+00:00",
"tracker": "/api/v10/applicants/trackers/123"
},
"2": {
"assigned": "2025-10-03T13:00:42+00:00",
"tracker": "/api/v10/applicants/trackers/321"
}
}