Coorpacademy Get S3 Signed Upload URL API

The Get S3 Signed Upload URL API from Coorpacademy — 1 operation(s) for get s3 signed upload url.

Operations 1

POST /presignedS3Url Get Signed S3 Link to Upload Scorm Bulk File to s3 Bucket #

Documentation

Specifications

Other Resources

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/coorpacademy-get-s3-signed-upload-url-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

coorpacademy-get-s3-signed-upload-url-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: API for Coorp Scorm player content
  version: 1.0.0
  title: scorm content Get S3 Signed Upload URL API
servers:
- url: https://api.coorpacademy.com/content-scorm
  description: production
- url: https://api-staging.coorpacademy.com/content-scorm
  description: staging
- url: http://localhost:13000
  description: local
schemes:
- https
tags:
- name: Get S3 Signed Upload URL
paths:
  /presignedS3Url:
    post:
      tags:
      - Get S3 Signed Upload URL
      summary: Get Signed S3 Link to Upload Scorm Bulk File to s3 Bucket
      description: Get S3 Link to Upload Scorm Bulk File to s3 Bucket
      operationId: presignedS3UrlPOST
      security:
      - Authorization: []
      requestBody:
        description: Information to get s3 Url (in case of source = CM) // for go1 input are not required
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/presignedS3UrlBody'
            examples:
              default:
                value:
                  repository: content-repo@cockpit-repo
      responses:
        '200':
          $ref: '#/components/responses/GetSignedS3Link'
        '500':
          $ref: '#/components/responses/S3LinkUploadError'
        '501':
          $ref: '#/components/responses/NotDefinedError'
components:
  schemas:
    presignedS3UrlBody:
      description: get S3 Signed Url to upload scorm & CSV metadata
      type: object
      properties:
        repository:
          type: string
          description: repository associated to the bulk
  responses:
    S3LinkUploadError:
      description: S3LinkUploadError
      content:
        application/json:
          schema:
            type: object
            properties:
              statusCode:
                type: number
              body:
                type: string
            example:
              statusCode: 500
              body: Issue while getting the S3 signed Link
    GetSignedS3Link:
      description: Response contain a S3 Signed Link URL to upload Scorm File and Csv Metadata File URL
      content:
        application/json:
          schema:
            type: object
            properties:
              uploadZipUrl:
                type: string
            example:
              uploadZipUrl: https://uploadZipUrl.com
    NotDefinedError:
      description: NotDefinedError
      content:
        application/json:
          schema:
            type: object
            properties:
              statusCode:
                type: number
              body:
                type: string
            example:
              statusCode: 501
              body: InternalError because something (like host in header) was not correctly defined
  securitySchemes:
    Authorization:
      type: apiKey
      name: Authorization
      in: header