Blobs

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

URI
/api/v10/applications/ID/exports/ID/blobs

GET List blobs

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

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

Response headers

HeaderValueDescription
Content-Typeapplication/jsonThe media type of the resource
Content-Length1234The size of the response body in bytes
X-Count1The number of blobs for this export

Response codes

Response codeDescription
200 OKThe list of blobs was successfully returned

Example response

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