WorkRamp Scorm Assignments API

The Scorm Assignments API from WorkRamp — 3 operation(s) for scorm assignments.

Operations 3

POST /api/v1/scorm_assignments/bulk_create Bulk Create SCORM Assignments #
POST /api/v1/scorm_assignments/bulk_delete Bulk Delete SCORM Assignments #
PATCH /api/v1/scorm_assignments/{assignment_id} Update SCORM Assignment #

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/workramp-scorm-assignments-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

workramp-scorm-assignments-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: json-api Scorm Assignments API
  version: '1.0'
servers:
- url: https://app.workramp.com
security:
- sec0: []
tags:
- name: Scorm Assignments
paths:
  /api/v1/scorm_assignments/bulk_create:
    post:
      description: Create one or more SCORM assignments
      responses:
        '200':
          description: ''
          content:
            application/json:
              examples:
                OK:
                  summary: OK
                  value:
                    success:
                    - user_id: 1234567891
                      assignment_id: assignment-id-1
                    - user_id: 1234567892
                      assignment_id: assignment-id-2
                    error:
                    - error: assignment_exists
                      user_id: 1234567893
              schema:
                type: object
                properties:
                  success:
                    type: array
                    items:
                      type: object
                      properties:
                        user_id:
                          type: integer
                          example: 1234567891
                          default: 0
                        assignment_id:
                          type: string
                          example: assignment-id-1
                      required:
                      - user_id
                      - assignment_id
                  error:
                    type: array
                    items:
                      type: object
                      properties:
                        error:
                          type: string
                          example: assignment_exists
                        user_id:
                          type: integer
                          example: 1234567893
                          default: 0
                      required:
                      - error
                      - user_id
                required:
                - success
                - error
      parameters: []
      summary: Bulk Create SCORM Assignments
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                scorm_id:
                  type: string
                  description: ID of the SCORM
                group_ids:
                  type: array
                  items:
                    type: integer
                  description: IDs of groups to be assigned this content
                user_ids:
                  type: array
                  items:
                    type: integer
                  description: IDs of users to be assigned this content
                user_emails:
                  type: array
                  description: Emails of users to be assigned this content
                  items:
                    type: string
                assigning_user_id:
                  type: number
                  description: ID of the user that is assigning the content
                due_date:
                  type: string
                  description: Due date for this assignment
              required:
              - scorm_id
      operationId: post_api-v1-scorm-assignments-bulk-create
      tags:
      - Scorm Assignments
  /api/v1/scorm_assignments/bulk_delete:
    post:
      description: Delete one or more SCORM assignments
      responses:
        '200':
          description: ''
          content:
            application/json:
              examples:
                OK:
                  summary: OK
                  value:
                    success:
                    - user_id: 1234567891
                      assignment_id: assignment-id-1
                    - user_id: 1234567892
                      assignment_id: assignment-id-2
                    error:
                    - error: did_not_exist
                      assignment_id: assignment-id-3
              schema:
                type: object
                properties:
                  success:
                    type: array
                    items:
                      type: object
                      properties:
                        user_id:
                          type: integer
                          example: 1234567891
                          default: 0
                          description: ID of the user
                        assignment_id:
                          type: string
                          example: assignment-id-1
                          description: ID of the SCORM assignment
                  error:
                    type: array
                    items:
                      type: object
                      properties:
                        error:
                          type: string
                          example: did_not_exist
                          description: Error type
                        assignment_id:
                          type: string
                          example: assignment-id-3
                          description: SCORM assignment ID
                      required:
                      - error
                      - assignment_id
                required:
                - success
                - error
      parameters: []
      summary: Bulk Delete SCORM Assignments
      operationId: post_api-v1-scorm-assignments-bulk-delete
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                scorm_id:
                  type: string
                  description: ID of the SCORM
                assignment_ids:
                  type: array
                  items:
                    type: string
                  description: IDs of the assignments to delete
              required:
              - scorm_id
              - assignment_ids
      tags:
      - Scorm Assignments
  /api/v1/scorm_assignments/{assignment_id}:
    patch:
      description: Update a single SCORM assignment
      responses:
        '200':
          description: ''
          content:
            application/json:
              examples:
                OK:
                  summary: OK
                  value:
                    assignerUserId: null
                    completionPercentage: 0
                    dueAt: null
                    dueDate: null
                    id: assignment-id-1
                    isCompleted: false
                    score: 0
                    tags: []
                    topLevelContentId: scorm-content-id-1
                    trainingSeriesUserAssignmentIds: []
      parameters:
      - in: path
        name: assignment_id
        schema:
          type: string
        required: true
      operationId: patch_api-v1-scorm-assignments-assignment-id
      summary: Update SCORM Assignment
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                due_date:
                  type: string
                  description: Due date for the assignment
      tags:
      - Scorm Assignments
components:
  securitySchemes:
    sec0:
      type: apiKey
      in: header
      name: Authorization
      x-bearer-format: bearer
      x-default: ACCESS_TOKEN
x-readme:
  headers: []
  explorer-enabled: false
  proxy-enabled: false
x-readme-fauxas: true