/api/applicants/ID/trackers

HEAD, GET

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

Note that this will 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/applicants/123/trackers
Host: apply.example.edu
Authorization: DREAM apikey="..."

Response headers

Content-Type: application/json
Content-Length: 1456

Example response

{
  "123": {
      "assigned": "2014-06-29T18:11:15+00:00",
      "tracker": "/api/applicants/trackers/123"
  },
  "321": {
      "assigned": "2014-07-10T19:21:55+00:00",
      "tracker": "/api/applicants/trackers/321"
  }
}