Consent

Represents a specific consent associated with an applicant. For a specific consent configured in DreamApply, see Consent (global).

URI
/api/v10/applicants/ID/consents/ID

GET Get an associated consent

Retrieve information about a specific consent associated with an applicant.

This API request does not return the consent itself. It represents a relationship between an applicant and a consent. Follow the consent URI in the response to retrieve further information about the consent.

Syntax
GET /api/v10/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/v10/applicants/123/consents/1"

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 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/v10/applicants/consents/1"
}