Google Classroom アドオンの一般提供が開始されました。詳しくは、
アドオンのドキュメントをご覧ください。
Method: courses.update
コースを更新します。
このメソッドは、次のエラーコードを返します。
PERMISSION_DENIED
: リクエスト元のユーザーがリクエストされたコースの変更を許可されていない場合、またはアクセスエラーのため。
NOT_FOUND
: リクエストされた ID のコースが存在しない場合。
- 次のリクエスト エラーの場合は
FAILED_PRECONDITION
。
HTTP リクエスト
PUT https://classroom.googleapis.com/v1/courses/{id}
この URL は gRPC Transcoding 構文を使用します。
パスパラメータ
パラメータ |
id |
string
更新するコースの ID。この識別子は、Classroom で割り当てられた識別子または alias です。
|
リクエスト本文
リクエストの本文には Course
のインスタンスが含まれています。
レスポンスの本文
成功した場合、レスポンスの本文には Course
のインスタンスが含まれます。
認可スコープ
次の OAuth スコープが必要です。
https://www.googleapis.com/auth/classroom.courses
詳細については、承認ガイドをご覧ください。
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2024-09-05 UTC。
[null,null,["最終更新日 2024-09-05 UTC。"],[[["Updates an existing course using its identifier, allowing modifications to course details."],["Requires `https://www.googleapis.com/auth/classroom.courses` scope for authorization to make changes."],["Returns the updated course details in the response or specific error codes if unsuccessful."],["Possible errors include permission issues, invalid course identifiers, and course modification restrictions."],["Utilizes a PUT request with the course ID in the path and the updated course details in the request body."]]],[]]