Offer letter

Represents a single offer letter.

Syntax
/api/v10/applications/ID/offers/ID/letters/ID
Host: apply.example.edu
Authorization: DREAM apikey="..."

GET Get an offer letter

Retrieve the metadata associated with an offer attachment.

This API request is provided only for the sake of completeness. Typically, you will retrieve the entire list of offers using GET /api/v10/applications/ID/offers/ID/letters, as this request does not provide additional data beyond what is already available in the listing.

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

Response headers

HeaderValueDescription
Content-Typeapplication/jsonThe media type of the resource
Content-Length1234The size of the response body in bytes

Response codes

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

Example response

Response
{
  "id": 1,
  "rendered": "2025-01-02T15:44:09+00:00",
  "letterhead": "/api/v10/letterheads/1",
  "administrator": null
}