Al-Farabi Kazakh National University instructor_task API

The instructor_task API from Al-Farabi Kazakh National University — 2 operation(s) for instructor_task.

Operations 4

GET /instructor_task/v1/schedules/{course_id}/bulk_email/ #
PUT /instructor_task/v1/schedules/{course_id}/bulk_email/{schedule_id} #
PATCH /instructor_task/v1/schedules/{course_id}/bulk_email/{schedule_id} #
DELETE /instructor_task/v1/schedules/{course_id}/bulk_email/{schedule_id} #

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/al-farabi-kazakh-national-university-instructor-task-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

al-farabi-kazakh-national-university-instructor-task-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Open edX Instructor Task API
  description: APIs for access to Open edX information
  contact:
    email: dl@kaznu.kz
  version: v1
servers:
- url: https://open.kaznu.kz/api
security:
- Basic: []
tags:
- name: instructor_task
paths:
  /instructor_task/v1/schedules/{course_id}/bulk_email/:
    get:
      operationId: instructor_task_v1_schedules_bulk_email_list
      description: Read only view to list all scheduled bulk email messages for a course-run.
      tags:
      - instructor_task
      parameters:
      - name: course_id
        in: path
        required: true
        schema:
          type: string
      - name: page
        in: query
        required: false
        description: A page number within the paginated result set.
        schema:
          type: integer
      - name: page_size
        in: query
        required: false
        description: Number of results to return per page.
        schema:
          type: integer
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                required:
                - count
                - results
                type: object
                properties:
                  count:
                    type: integer
                  next:
                    type:
                    - string
                    - 'null'
                    format: uri
                  previous:
                    type:
                    - string
                    - 'null'
                    format: uri
                  results:
                    type: array
                    items:
                      $ref: '#/components/schemas/ScheduledBulkEmail'
  /instructor_task/v1/schedules/{course_id}/bulk_email/{schedule_id}:
    put:
      operationId: instructor_task_v1_schedules_bulk_email_update
      description: "A view that supports the modification of instructor task schedules. It provides the ability to:\n    * Delete an instructor task schedule\n    * Update an instructor task schedule and/or update the course email associated with the scheduled task."
      tags:
      - instructor_task
      parameters:
      - name: course_id
        in: path
        required: true
        schema:
          type: string
      - name: schedule_id
        in: path
        required: true
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ScheduledBulkEmail'
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ScheduledBulkEmail'
    patch:
      operationId: instructor_task_v1_schedules_bulk_email_partial_update
      description: "A view that supports the modification of instructor task schedules. It provides the ability to:\n    * Delete an instructor task schedule\n    * Update an instructor task schedule and/or update the course email associated with the scheduled task."
      tags:
      - instructor_task
      parameters:
      - name: course_id
        in: path
        required: true
        schema:
          type: string
      - name: schedule_id
        in: path
        required: true
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ScheduledBulkEmail'
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ScheduledBulkEmail'
    delete:
      operationId: instructor_task_v1_schedules_bulk_email_delete
      description: "A view that supports the modification of instructor task schedules. It provides the ability to:\n    * Delete an instructor task schedule\n    * Update an instructor task schedule and/or update the course email associated with the scheduled task."
      tags:
      - instructor_task
      parameters:
      - name: course_id
        in: path
        required: true
        schema:
          type: string
      - name: schedule_id
        in: path
        required: true
        schema:
          type: string
      responses:
        '204':
          description: ''
components:
  schemas:
    ScheduledBulkEmail:
      required:
      - task
      - task_due
      type: object
      properties:
        id:
          title: ID
          type: integer
          readOnly: true
        course_email:
          title: Course email
          type: string
          readOnly: true
        task:
          title: Task
          type: integer
        task_due:
          title: Task due
          type: string
          format: date-time
  securitySchemes:
    Basic:
      type: http
      scheme: basic