Canvas LMS · Arazzo Workflow

Canvas LMS Conclude Course After Grade Check

Version 1.0.0

List a course's enrollments with grades, then conclude the course.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub Learning ManagementEducationEdTechLMSLTIHigher EducationK-12Open-SourceAGPLCanvasArazzoWorkflows

Provider

canvas-lms

Workflows

conclude-course-with-grade-check
Review enrollment grades then conclude the course.
Reads the course, lists its active enrollments to capture final grades, and concludes the course.
3 steps inputs: courseId outputs: concluded, courseId
1
getCourse
Read the course to confirm it exists before concluding it.
2
listEnrollments
List the course's active enrollments to review final grades before concluding.
3
concludeCourse
Conclude the course using the delete endpoint with event=conclude, a reversible close that preserves course data.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Canvas LMS Conclude Course After Grade Check
  summary: List a course's enrollments with grades, then conclude the course.
  description: >-
    An end-of-term flow for Canvas. The workflow lists the course enrollments to
    review final grades, confirms the course exists, and then concludes the
    course (a reversible close that preserves data, as opposed to a destructive
    delete). Every step spells out its request inline so the flow can be read and
    executed without opening the underlying OpenAPI description.
  version: 1.0.0
  x-realizes-capability-ids:
  - BC-4720.10
  x-capability-derivation:
    method: 'deterministic join: sourceDescriptions -> per-tag OpenAPI -> tag/capability edge. No classification at this step.'
    min_confidence: 0.7
    sources:
    - capability_id: BC-4720.10
      capability_name: Enrolment & Registration
      spec: canvas-lms-enrollments-api-openapi.yml
      confidence: 0.85
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: coursesApi
  url: ../openapi/canvas-lms-courses-api-openapi.yml
  type: openapi
- name: enrollmentsApi
  url: ../openapi/canvas-lms-enrollments-api-openapi.yml
  type: openapi
workflows:
- workflowId: conclude-course-with-grade-check
  summary: Review enrollment grades then conclude the course.
  description: >-
    Reads the course, lists its active enrollments to capture final grades, and
    concludes the course.
  inputs:
    type: object
    required:
    - courseId
    properties:
      courseId:
        type: string
        description: The Canvas course id to conclude.
  steps:
  - stepId: getCourse
    description: >-
      Read the course to confirm it exists before concluding it.
    operationId: getCourse
    parameters:
    - name: course_id
      in: path
      value: $inputs.courseId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      courseId: $response.body#/id
      workflowState: $response.body#/workflow_state
  - stepId: listEnrollments
    description: >-
      List the course's active enrollments to review final grades before
      concluding.
    operationId: listCourseEnrollments
    parameters:
    - name: course_id
      in: path
      value: $inputs.courseId
    - name: state[]
      in: query
      value:
      - active
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      firstEnrollmentId: $response.body#/0/id
      firstFinalGrade: $response.body#/0/grades/final_grade
  - stepId: concludeCourse
    description: >-
      Conclude the course using the delete endpoint with event=conclude, a
      reversible close that preserves course data.
    operationId: deleteCourse
    parameters:
    - name: course_id
      in: path
      value: $inputs.courseId
    - name: event
      in: query
      value: conclude
    successCriteria:
    - condition: $statusCode == 200
    - condition: $response.body#/conclude == true
    outputs:
      concluded: $response.body#/conclude
  outputs:
    courseId: $steps.getCourse.outputs.courseId
    concluded: $steps.concludeCourse.outputs.concluded

Work with this as data

Every workflow here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This workflow
curl "https://apis.io/api/v1/arazzo/canvas-lms-conclude-course-with-grade-check-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.