Tracker (global)

Represents a single tracker code configured in the system. For a specific tracker code assigned to a specific applicant, see Tracker.

URI
/api/v9/applicants/trackers/ID

GET Get a tracker

Get information about a specific tracker code currently available in the system.

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

Response headers

HeaderValueDescription
Content-Typeapplication/jsonMedia type of the resource
Content-Length1456Size of the response body in bytes

Response codes

Response codeDescription
200 OKThe tracker exists
404 Not FoundThe 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 the tracker code from the system, also removing it from all applicants.

Syntax
DELETE /api/v9/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/v9/applicants/trackers/1"

Response headers

HeaderValueDescription
Content-Typetext/plainMedia type of the resource
Content-Length0Size of the response body in bytes

Response codes

Response codeDescription
204 No ContentThe tracker was successfully deleted
404 Not FoundThe tracker was not found