Offer note

Represents a single offer note.

URI
/api/v9/applications/ID/offers/ID/notes/ID

GET Get an offer note

A request with the GET verb returns information about one specific (sticky) note on the offer record.

Syntax
GET /api/v9/applications/123/offers/321/notes/123
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/applications/123/offers/321/notes/123"

Response headers

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

Response codes

Response codeDescription
200 OKThe note was successfully returned
404 Not FoundThe note was not found

Example response

Response
{
  "created": "2025-12-10T11:55:57+00:00",
  "removed": null,
  "colour": "Salmon",
  "pinned": false,
  "collapsed": false,
  "notes": "Need to receive updated proof of financial support documents"
}
Response
"Need to receive updated proof of financial support documents"

PUT Edit an offer note

Update a specific offer (sticky) note.

Syntax
PUT /api/v9/applications/123/offers/321/notes/123
Host: apply.example.edu
Authorization: DREAM apikey="..."

Parameters

NameRequired/OptionalDescriptionNotes
colourOptionalSpecify the colour of the (sticky) note: Yellow, Orange, Salmon, Green, Blue, Violet
colorOptionalAn alias for colourIf both colour and color are specified, then colour is preferred.

Raw request body

The comments have to be a proper JSON string token. In a JSON string only space is allowed per the specification, newlines, for example, have to be encoded.

Request body
"Some notes\nAnother line"

Example request

Request
curl
curl \
  -X PUT \
  -H "Authorization: DREAM apikey=\"YOUR-API-KEY\"" \
  -d '"Some notes\nAnother line"' \
  "https://apply.example.edu/api/v9/applications/123/offers/321/notes/123"

Response headers

HeaderValueDescription
Content-Typetext/plainMedia type of the resource
Content-Length0Size of the response body in bytes

Response codes

Response codeDescription
204 No ContentThe note was successfully saved.
400 Bad RequestInvalid notes.
Please make sure that status is a valid JSON string with quotes.