Skilljar Domains > Manager Access API

The Domains > Manager Access API from Skilljar — 1 operation(s) for domains > manager access.

Operations 2

PUT /v1/domains/{domain_name}/users/{user_id}/manager-access #
DELETE /v1/domains/{domain_name}/users/{user_id}/manager-access #

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/skilljar-domains-manager-access-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

skilljar-domains-manager-access-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Skilljar Assets Domains > Manager Access API
  version: 1.0.0
  description: 'The Skilljar API provides comprehensive access to our customer education platform, enabling you to programmatically manage courses, users, enrollments, and more.


    This interactive documentation is automatically generated from our codebase and stays current with the latest features and endpoints.


    ## Getting Started


    New to the Skilljar API? Check out these essential resources:


    - **[API Getting Started Guide](https://support.gainsight.com/Skilljar/Develop_and_Customize/API/Getting_started_with_the_Skilljar_API)** - Authentication, basic concepts, and your first API call

    - **[Token-based SSO](https://support.gainsight.com/Skilljar/Develop_and_Customize/Single_Sign_on_(SSO)/Configuring_Token-Based_Single_Sign-On_(SSO))** - Seamlessly integrate user authentication

    - **[Webhooks](https://support.gainsight.com/Skilljar/Develop_and_Customize/API/Using_Webhooks_API)** - Real-time notifications for platform events

    '
servers:
- url: https://api.skilljar.com/v1/
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: Domains > Manager Access
paths:
  /v1/domains/{domain_name}/users/{user_id}/manager-access:
    put:
      operationId: domains_users_manager_access_update
      description: Grant and update student manager access for a user.
      parameters:
      - in: path
        name: domain_name
        schema:
          type: string
        required: true
      - in: path
        name: user_id
        schema:
          type: string
        required: true
      tags:
      - Domains > Manager Access
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ManagerAccessUpdateRequestRequest'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/ManagerAccessUpdateRequestRequest'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/ManagerAccessUpdateRequestRequest'
        required: true
      security:
      - OrganizationApiKey: []
      - tokenAuth: []
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ManagerAccess'
          description: ''
    delete:
      operationId: domains_users_manager_access_destroy
      description: Revoke student manager access for a user.
      parameters:
      - in: path
        name: domain_name
        schema:
          type: string
        required: true
      - in: path
        name: user_id
        schema:
          type: string
        required: true
      tags:
      - Domains > Manager Access
      security:
      - OrganizationApiKey: []
      - tokenAuth: []
      responses:
        '204':
          description: No response body
components:
  schemas:
    ManagerAccessUpdateRequestRequest:
      type: object
      description: Serializer for updating a user's third-party manager access settings.
      properties:
        group_name:
          type: string
          minLength: 1
        can_create_users:
          type: boolean
          default: false
        course_access_level:
          type: string
          minLength: 1
        course_ids:
          type: array
          items:
            type: string
            minLength: 1
        path_access_level:
          type: string
          minLength: 1
        path_ids:
          type: array
          items:
            type: string
            minLength: 1
        license_ids:
          type: array
          items:
            type: string
            minLength: 1
      required:
      - course_access_level
      - group_name
      - path_access_level
    ManagerAccess:
      type: object
      description: Serializer for returning a user's third-party manager access settings.
      properties:
        user:
          $ref: '#/components/schemas/ReadOnlyUser'
        manager_access:
          allOf:
          - $ref: '#/components/schemas/ManagerAccessDetails'
          readOnly: true
        invalid_ids:
          allOf:
          - $ref: '#/components/schemas/InvalidIds'
          readOnly: true
      required:
      - user
    ManagerAccessDetails:
      type: object
      description: Serializer for a user's third-party manager access details.
      properties:
        group_id:
          type:
          - string
          - 'null'
        can_create_users:
          type:
          - boolean
          - 'null'
        course_access_level:
          type: string
        course_ids:
          type: array
          items:
            type: string
        path_access_level:
          type: string
        path_ids:
          type: array
          items:
            type: string
        license_ids:
          type: array
          items:
            type: string
      required:
      - course_access_level
      - course_ids
      - license_ids
      - path_access_level
      - path_ids
    ReadOnlyUser:
      type: object
      description: Version of the user serializer configured to lookup a user given the user's id.  It will not create new users.
      properties:
        id:
          type: string
          description: Known as user_id within the documentation
        email:
          type: string
          format: email
          readOnly: true
          title: Email address
          description: Email address
        first_name:
          type: string
          readOnly: true
          description: First name
        last_name:
          type: string
          readOnly: true
          description: Last name
      required:
      - id
    InvalidIds:
      type: object
      description: Serializer for returning invalid IDs from the update request.
      properties:
        course_ids:
          type: array
          items:
            type: string
        path_ids:
          type: array
          items:
            type: string
        license_ids:
          type: array
          items:
            type: string
  securitySchemes:
    OrganizationApiKey:
      type: http
      scheme: basic
      description: API key authentication using HTTP Basic Auth. Use your API key as the username and leave password empty.
    tokenAuth:
      type: http
      scheme: bearer