Tableview

Represents a single tableview created in the DreamApply portal.

URI
/api/v10/tableviews/ID

GET Get a tableview

Return information about a specific tableview. Use GET /api/v10/tableviews to list the available tableviews and retrieve their IDs.

Currently it is not possible to set up new tableviews with the API. Use the DreamApply portal to create and configure a suitable tableview. The ACL settings for the tableview are irrelevant — all tableviews are visible via the API, no matter who created them.

Syntax
GET /api/v10/tableviews/123
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/tableviews/123"

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 tableview data was successfully returned
404 Not FoundThe tableview was not found

Example response

Response
{
  "id": 1,
  "created": "2025-01-27T11:13:33+00:00",
  "modified": "2025-07-07T11:03:41+00:00",
  "title": "Applicants by categories",
  "tabledata": "/api/v10/tableviews/1/tabledata"
}