Wishlist

Represents the applicant’s wishlist.

URI
/api/v9/applicants/ID/wishes

GET List wishes

Get a list of courses that the applicant in question has shown interest for. In more formal terms, this is the applicant’s wishlist. An applicant may collect interesting courses to his wishlist for later application or further evaluation.

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

Response headers

HeaderValueDescription
Content-Typeapplication/jsonMedia type of the resource
Content-Length1234Size of the response body in bytes
X-Count2Number of returned wishlist items

Response codes

Response codeDescription
200 OKThe list of items on the wishlist was successfully returned

Example response

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