Dashboard Students¶
Manage the students associated with a dashboard.
To change the students on dashboards, use Dashboard Uploads
- Linked From:
Dashboard Student¶
Field |
Description |
---|---|
|
The ID for the user. |
|
The name of the user. |
|
The SIS ID for the user. |
Note
To create dashboard students, use the Dashboard Upload POST endpoint.
GET¶
The GET
method is used to fetch a paginated collection of a dashboards students.
The students are returned ordered by id
in ascending order.
The GET
method supports the following query string parameters:
Parameter |
Description |
---|---|
|
A unique identifier to fetch the next or previous page. It is supplied in the response as a way to navigate pages. |
|
Filter down to users whose name contains the term. |
|
Filter down to users whose ID matches this value. |
|
Filter down to users whose SIS ID matches this value. |
|
Filter down to students on dashboards for the given account and all of its subaccounts. The account must be a subaccount of the account associated with your API token. |
- Accepted Request Content-Types:
application/json
- Available Response Content-Types:
application/json
Example Request¶
- URL:
/detective/api/v2/dashboard/<dashboard_id>/student/
- Content-Type:
application/json
Example Success Response¶
- URL:
/detective/api/v2/dashboard/00000000-0000-0000-0000-000000000000/student/
- Status:
200 OK Request
- Content-Type:
application/json
{
"next": "https://apps.aspiredu.com/detective/api/v2/dashboard/00000000-0000-0000-0000-000000000000/student/?cursor=UNIQUE_STRING",
"previous": "https://apps.aspiredu.com/detective/api/v2/dashboard/00000000-0000-0000-0000-000000000000/student/?cursor=DIFFERENT_UNIQUE_STRING",
"results": [
{
"id": "10",
"sis_id": "10",
"name": "Abigail Cooper"
},
{
"id": "1",
"sis_id": "1",
"name": "Emily Cooper"
}
]
}