GET api/StudentActivities/{StudentActivityId}
Returns a Student Activity.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| StudentActivityId |
Application identifier for the Student Activity |
globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
StudentActivity object for the specified StudentActivityId
StudentActivity| Name | Description | Type | Additional information |
|---|---|---|---|
| StudentId |
The application identifier of the Student for the Student Activity. |
globally unique identifier |
None. |
| ActivityId |
The application identifier of the Activity for the Student Activity. |
globally unique identifier |
None. |
| BeginDate |
The begin date for the Student Activity. |
date |
None. |
| EndDate |
The end date for the Student Activity. |
date |
None. |
| Id |
The application identifier for the object. This cannot be changed by the user. |
globally unique identifier |
None. |
| DataVersion |
The version of the API data |
string |
None. |
| ApiName |
The name of the object without the Api suffix |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"StudentId": "6b6aaef9-6856-4dec-8cf5-383ecda1d06c",
"ActivityId": "3670ecbc-73dc-4329-9ba4-9d8077ffd9c8",
"BeginDate": "2026-04-05T23:59:47.4409101-05:00",
"EndDate": "2026-04-05T23:59:47.4409101-05:00",
"Id": "3412a865-7570-416f-9a5b-feea9957eb9c",
"DataVersion": "sample string 6",
"ApiName": ""
}
application/xml, text/xml
Sample:
<StudentActivity xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MAS.WebApi.v1"> <DataVersion xmlns="http://schemas.datacontract.org/2004/07/MAS.WebApi">sample string 6</DataVersion> <Id xmlns="http://schemas.datacontract.org/2004/07/MAS.WebApi">3412a865-7570-416f-9a5b-feea9957eb9c</Id> <ActivityId>3670ecbc-73dc-4329-9ba4-9d8077ffd9c8</ActivityId> <BeginDate>2026-04-05T23:59:47.4409101-05:00</BeginDate> <EndDate>2026-04-05T23:59:47.4409101-05:00</EndDate> <StudentId>6b6aaef9-6856-4dec-8cf5-383ecda1d06c</StudentId> </StudentActivity>