Schoology Subscriptions API

The Subscriptions API from Schoology — 1 operation(s) for subscriptions.

Operations 2

GET /triggers/subscriptions List subscriptions #
PUT /triggers/subscriptions Create or modify subscriptions #

Work with this as data

Every API 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 apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • 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 API
curl "https://apis.io/api/v1/apis/schoology-subscriptions-api"
All apis
curl "https://apis.io/api/v1/apis?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.

OpenAPI Specification

schoology-subscriptions-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Schoology Event Triggers (Webhooks) Subscriptions API
  description: 'Schoology''s documented webhook surface, called "Event Triggers". Schoology-defined

    actions ("triggers") fire against user-defined HTTP endpoints ("targets") that are

    linked via "subscriptions". Schoology POSTs event objects to the configured target

    URL and expects an HTTP 200 response. If a non-200 is received, the event is

    requeued and retried up to 5 times at 10 minute intervals, after which it is

    dropped.

    Source: https://developers.schoology.com/api-documentation/rest-api-triggers-v1/

    Event objects: https://developers.schoology.com/api-documentation/rest-api-triggers-v1/event_objects/

    '
  version: '1.0'
servers:
- url: https://api.schoology.com/v1
  description: Schoology REST API v1
security:
- OAuth: []
tags:
- name: Subscriptions
paths:
  /triggers/subscriptions:
    get:
      summary: List subscriptions
      description: Lists subscriptions linking targets to Schoology-defined triggers.
      operationId: listTriggerSubscriptions
      tags:
      - Subscriptions
      responses:
        '200':
          description: A collection of subscriptions.
    put:
      summary: Create or modify subscriptions
      description: Creates or modifies subscriptions that link triggers to targets.
      operationId: upsertTriggerSubscriptions
      tags:
      - Subscriptions
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Subscription'
      responses:
        '200':
          description: Subscription created or modified.
components:
  schemas:
    Subscription:
      type: object
      description: Links a Schoology-defined trigger to a target.
      properties:
        target_id:
          type: integer
          description: Identifier of the target that should receive events for this trigger.
        trigger:
          type: string
          description: Name of the Schoology-defined trigger (for example grade_item, attendance, grades, section_completion, dropbox_submission).
        subscribed:
          type: integer
          enum:
          - 0
          - 1
          description: Whether the subscription is active (1) or inactive (0).
        include_object:
          type: integer
          enum:
          - 0
          - 1
          description: Whether to include the full object representation in the event payload.
        version:
          type: string
          description: API version of the subscription (for example "v1").
      required:
      - target_id
      - trigger
      - subscribed
      - version
  securitySchemes:
    OAuth:
      type: oauth2
      description: OAuth 1.0a / 2.0 per Schoology Authentication docs.
      flows:
        authorizationCode:
          authorizationUrl: https://api.schoology.com/v1/oauth/authorize
          tokenUrl: https://api.schoology.com/v1/oauth/access_token
          scopes: {}