π Add Student to Degree
The addStudentToDegree mutation allows administrators to enroll a student in a degree program, specifying optional tuition cost and currency.
Input Parameters
Parameter | Type | Description |
|---|---|---|
| Currency | Currency for tuition payment (optional). |
| ID! | ID of the degree program in which the student is enrolling. |
| String! | Email address of the student. |
| StudentInput | Details of the student (optional). |
| Int | Tuition cost amount in the specified currency (optional). |
Input Object: StudentInput
Field | Type | Description |
|---|---|---|
| String | External system identifier for the student. |
| String | First name of the student. |
| String | Last name of the student. |
Response Fields
Field | Type | Description |
|---|---|---|
| ID! | Unique identifier of the enrolled student. |
| String! | Full name of the student. |
| String! | Email address of the student. |
| [DegreeStudent!]! | List of degrees the student is enrolled in, including compliance steps and status. |
πΒ Request (Try It)
For a detailed explanation of how to use this mutation, including key concepts and best practices, check Inviting Students to a Degree using API.