Appearance
Google Classroom
Manage courses, students, and coursework via the Google Classroom API.
| Detail | Value |
|---|---|
| Category | Education |
| Base URL | https://classroom.googleapis.com/v1 |
| Authentication | OAuth2 Client Credentials |
| Endpoints | 3 |
| Connector key | google-classroom |
Using Google Classroom in a workflow
- Go to Connections and click New Connection.
- Pick Google Classroom from the marketplace.
- Enter your credentials (see Authentication above for what's expected).
- In a workflow, drop an API Call node and select this connection.
- Pick the operation you need from the Operation dropdown — the full list is below.
Available endpoints
| Endpoint | Summary |
|---|---|
GET /courses | List courses |
GET /courses/{id}/students | List students in a course |
POST /courses/{id}/courseWork | Create course work |
Each endpoint is documented in full below. Use the outline on the right to jump to one.
GET /courses
List courses
| Detail | Value |
|---|---|
| Operation ID | education.listGoogleCourses |
| Method | GET |
| Path | /courses |
Parameters
| Name | Location | Type | Required |
|---|---|---|---|
pageSize | query | integer | No |
pageToken | query | string | No |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Google Classroom connection from the Connection dropdown.
- In the Operation dropdown, select
education.listGoogleCourses. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Google Classroom API reference.
GET /courses/{id}/students
List students in a course
| Detail | Value |
|---|---|
| Operation ID | education.listGoogleStudents |
| Method | GET |
| Path | /courses/{id}/students |
Parameters
| Name | Location | Type | Required |
|---|---|---|---|
id | path | string | Yes |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Google Classroom connection from the Connection dropdown.
- In the Operation dropdown, select
education.listGoogleStudents. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
Required fields are marked — fill them or the call will fail at runtime.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Google Classroom API reference.
POST /courses/{id}/courseWork
Create course work
| Detail | Value |
|---|---|
| Operation ID | education.createCourseWork |
| Method | POST |
| Path | /courses/{id}/courseWork |
Parameters
| Name | Location | Type | Required |
|---|---|---|---|
id | path | string | Yes |
Request Body
| Field | Type |
|---|---|
title | string |
description | string |
workType | string |
maxPoints | number |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Google Classroom connection from the Connection dropdown.
- In the Operation dropdown, select
education.createCourseWork. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
Required fields are marked — fill them or the call will fail at runtime.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Google Classroom API reference.