Trackers

Represents a list of tracker associations for the applicant in question. For a list of trackers created in the system, see Trackers (global).

URI
/api/v9/applicants/ID/trackers

GET List trackers

Get a list of tracker associations for the applicant in question.

This request does not return the trackers themselves, but rather represents the relationships between an applicant and trackers. Follow the tracker URI in the response to retrieve further information about the tracker in question.

Syntax
GET /api/v9/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/v9/applicants/123/trackers"

Response headers

HeaderValueDescription
Content-Typeapplication/jsonMedia type of the resource
Content-Length1234Size of the response body in bytes
X-Count2Number of returned trackers

Response codes

Response codeDescription
200 OKThe list of tracker codes assigned to the applicant was successfully returned

Example response

Response
{
  "1": {
    "assigned": "2025-10-03T13:00:42+00:00",
    "tracker": "/api/v9/applicants/trackers/123"
  },
  "2": {
    "assigned": "2025-10-03T13:00:42+00:00",
    "tracker": "/api/v9/applicants/trackers/321"
  }
}