Use the HEAD
verb to test if this tracker code exists. A request with the GET
verb returns some additional information about the tracker (e.g created date, notes etc.).
GET /api/applicants/trackers/1 Host: apply.example.edu Authorization: DREAM apikey="..."
Content-Type: application/json Content-Length: 1234
200 OK | The tracker exists |
404 Not Found | The tracker does not exist |
{ "created": "2014-06-25T11:09:37+00:00", "code": "FAIR", "notes": "Some notes", "reduction": { "reduction": "Percent", "percent": 20 } }
Remove the tracker code from the system, also removing it from all applicants.
DELETE /api/applicants/trackers/1 Host: apply.example.edu Authorization: DREAM apikey="..."
Content-Type: text/plain Content-Length: 0
204 No Content | Tracker was successfully deleted |