Blobs

Represents a list of the downloadable files (blobs) regarding the export.

URI
/api/v9/applications/ID/exports/ID/blobs

GET List blobs

Fetch information about just the downloadable blobs (Binary Large OBjects) that usually constitute the actual exported files.

Syntax
GET /api/v9/applications/123/exports/1/blobs
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/exports/1/blobs"

Response headers

HeaderValueDescription
Content-Typeapplication/jsonMedia type of the resource
Content-Length1234Size of the response body in bytes
X-Count1Number of blobs for this export

Response codes

Response codeDescription
200 OKThe list of blobs was successfully returned

Example response

Response
{
  "/api/v9/applications/123/exports/1/blobs/1-537a02b27c20b": "StudyContract.pdf"
}