Consent

Represents a specific consent associated with an applicant. For a specific consent available in the system, see Consent (global).

URI
/api/v9/applicants/ID/consents/ID

GET Get an associated consent

Get a consent associated with an applicant.

This request does not return the consent itself, but rather represents the relationships between the applicant and the consent. Follow the consent URI in the response to retrieve further information about the consent in question.

Syntax
GET /api/v9/applicants/123/consents/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/consents/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 consent association is found
400 Bad RequestThe consent ID was not valid
404 Not FoundThe applicant has not acted on this consent
404 Not FoundThe consent was not found

Example response

Response
{
  "decided": "2025-08-05T12:13:02+00:00",
  "decision": "Accept",
  "consent": "/api/v9/applicants/consents/1"
}