Trackers

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/trackers

GET 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

HeaderValueDescription
Content-Typeapplication/jsonThe media type of the resource
Content-Length1234The size of the response body in bytes
X-Count2The number of returned trackers

Response codes

Response codeDescription
200 OKThe 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"
  }
}