Wishlist item

Represents a single item on the applicant’s wishlist.

URI
/api/v9/applicants/ID/wishes/ID

GET Get a wishlist item

Retrieve information about a particular applicant wishlist item. This represents a course that the applicant has shown interest towards, but is not yet added to any application. An applicant may collect interesting courses to his wishlist for later application or further evaluation.

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

Response headers

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

Response codes

Response codeDescription
200 OKThe item on the applicant wishlist is returned
404 Not FoundThe applicant wishlist item was not found

Example response

Response
{
  "wished": "1970-01-01T00:00:01+00:00",
  "applicant": "/api/v9/applicants/60",
  "course": "/api/v9/course/1",
  "intake": null,
  "notes": null
}