Tracker (global)

Represents a single tracker configured in DreamApply. For a specific tracker assigned to a specific applicant, see Tracker.

URI
/api/v10/applicants/trackers/ID

GET 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

HeaderValueDescription
Content-Typeapplication/jsonThe media type of the resource
Content-Length1456The size 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 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

HeaderValueDescription
Content-Typetext/plainThe media type of the resource
Content-Length0The size of the response body in bytes

Response codes

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