Uplimit Export API

The Export API from Uplimit — 2 operation(s) for export.

Operations 2

POST /v1/GetLearnerActivity/start
GET /v1/GetLearnerActivity/get

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/uplimit-export-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

uplimit-export-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  contact:
    email: hello@uplimit.com
    name: Uplimit
    url: https://uplimit.com
  description: This API is used to manage organizations within the Uplimit platform. For more information, please reach out to your Uplimit Enterprise contact.
  title: Uplimit Organization Export API
  version: 2025-08-18
servers:
- description: Uplimit
  url: https://uplimit.com/api/organization/
tags:
- name: Export
paths:
  /v1/GetLearnerActivity/start:
    post:
      description: This API starts a job to export learner activity for a given sessions. If no sessions are provided, all sessions in the course will be exported.
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/_v1_GetLearnerActivity_start_post_request'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/_v1_GetLearnerActivity_start_post_200_response'
          description: The job was started successfully.
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/_v1_CreateUser_post_400_response'
          description: The request is invalid.
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/_v1_CreateUser_post_400_response'
          description: The request is unauthorized.
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/_v1_CreateUser_post_400_response'
          description: One or more of the resources required to fulfill the request were not found.
        '405':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/_v1_CreateUser_post_400_response'
          description: The request method is not allowed.
      security:
      - bearerAuth: []
      tags:
      - Export
  /v1/GetLearnerActivity/get:
    get:
      description: This API gets the status of a job to export learner activity for a given session.
      parameters:
      - description: The ID of the job to get the status of.
        explode: true
        in: query
        name: jobId
        required: true
        schema:
          description: The ID of the job to get the status of.
          type: string
        style: form
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/_v1_GetLearnerActivity_get_get_200_response'
          description: The job status was retrieved successfully.
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/_v1_CreateUser_post_400_response'
          description: The request is invalid.
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/_v1_CreateUser_post_400_response'
          description: The request is unauthorized.
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/_v1_CreateUser_post_400_response'
          description: One or more of the resources required to fulfill the request were not found.
        '405':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/_v1_CreateUser_post_400_response'
          description: The request method is not allowed.
      security:
      - bearerAuth: []
      tags:
      - Export
components:
  schemas:
    _v1_GetLearnerActivity_get_get_200_response:
      example:
        url: url
      properties:
        url:
          description: The URL to download the exported data.
          type: string
      required:
      - url
    _v1_GetLearnerActivity_start_post_200_response:
      example:
        jobId: jobId
      properties:
        jobId:
          description: The ID of the job that was started.
          type: string
      required:
      - jobId
    _v1_CreateUser_post_400_response:
      example:
        error: error
      properties:
        error:
          description: The error message.
          type: string
      required:
      - error
    _v1_GetLearnerActivity_start_post_request:
      properties:
        sessionIds:
          description: The IDs of the sessions to export activity for. If not provided, all sessions will be exported.
          items:
            type: string
          type: array
  securitySchemes:
    bearerAuth:
      scheme: bearer
      type: http