Skip to content
Woolf Help Center home
Woolf Help Center home

πŸ“œ 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

Currency for tuition payment (optional).

degreeId

ID!

ID of the degree program in which the student is enrolling.

email

String!

Email address of the student.

student

StudentInput

Details of the student (optional).

tuitionCost

Int

Tuition cost amount in the specified currency (optional).

Input Object: StudentInput

Field

Type

Description

externalId

String

External system identifier for the student.

nameFirst

String

First name of the student.

nameLast

String

Last name of the student.

Response Fields

Field

Type

Description

id

ID!

Unique identifier of the enrolled student.

name

String!

Full name of the student.

email

String!

Email address of the student.

degrees

[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.

Β