Offer notes

Represents a list of notes added to an offer.

URI
/api/v10/applications/ID/offers/ID/notes

The PUT /api/applications/ID/offers/ID/notes request was discontinued starting from version 6. To add a new note, use the POST method instead. For backwards compatibility, the PATCH method is supported, but is deprecated.

GET List offer notes

List all offer notes — text messages (sticky notes) added to the offer card.

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

Response headers

HeaderValueDescription
Content-Typeapplication/jsonThe media type of the resource
Content-Length1234The size of the response body in bytes
X-Count2The number of notes for this offer

Response codes

Response codeDescription
200 OKThe list of notes was successfully returned
404 Not FoundThe application does not have this offer

Example response

Response
{
  "144": {
    "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"
  },
  "145": {
    "created": "2025-12-10T11:56:13+00:00",
    "removed": null,
    "colour": "Orange",
    "pinned": false,
    "collapsed": false,
    "notes": "Follow up on the missing final high school transcript"
  }
}
Response
"Need to receive updated proof of financial support documents -- Follow up on the missing final high school transcript"

POST Add an offer note

Create a new note for an offer.

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

Parameters

NameRequired/OptionalDescriptionNotes
colourOptionalThe colour of the sticky note. Allowed values: Yellow, Orange, Salmon, Green, Blue, Violet.-
colorOptionalAn alias for colour.If both colour and color values are specified, the colour value is preferred.

Raw request body

The request body must contain a proper JSON string literal that meets the following requirements:

  • The value must be enclosed in double quotes, for example, "Some note", not Some note.
  • According to the JSON specification, only spaces are allowed. Other characters, such as new lines (\n) and quotation marks (\"), must be encoded.
Request body
"The first line in the note\nThe second line in the note"

Example request

Request
curl
curl \
  -X POST \
  -H "Authorization: DREAM apikey=\"YOUR-API-KEY\"" \
  -d '"The first line in the note\nThe second line in the note"' \
  "https://apply.example.edu/api/v10/applications/123/offers/321/notes"

Response headers

HeaderValueDescription
Content-Typetext/plainThe media type of the resource
Content-Length0The size of the response body in bytes

Response codes

Response codeDescription
204 No ContentThe notes were successfully saved.
400 Bad RequestInvalid notes.
Please make sure that status is a valid JSON string with quotes.
404 Not FoundThe application does not have this offer.