Sign in

Modify announcement assignees

documented

Modifies assignee mode and options of an announcement.

POST /v1/courses/{courseId}/announcements/{id}:modifyAssigneesCoursesno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://classroom.googleapis.com/v1/courses/{{$courseId}}/announcements/{{$id}}:modifyAssignees" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"assigneeMode": "{{$assigneeMode}}", "modifyIndividualStudentsOptions": {"addStudentIds": {{$addStudentIds}}, "removeStudentIds": {{$removeStudentIds}}}}'