Adobe Captivate · Arazzo Workflow

Adobe Learning Manager Learner Progress Report

Version 1.0.0

Assemble a learner profile from their account, enrollments, skills, and gamification points.

1 workflow 4 source APIs 1 provider
View Spec View on GitHub AuthoringEducationE-LearningLMSSCORMTrainingxAPIArazzoWorkflows

Provider

adobe-captivate

Workflows

learner-progress-report
Build a consolidated progress snapshot for a single learner.
Reads the learner's user record, lists their enrollments, lists their acquired skills, and reads their gamification points, returning all four as workflow outputs.
4 steps inputs: accessToken, userId outputs: enrollments, name, overallPoints, skills, userId
1
getUser
Read the learner's user record to confirm the account and capture profile basics for the report header.
2
getEnrollments
List the learner's enrollments to capture their current and completed course participation.
3
getUserSkills
List the skills the learner has acquired, including points earned toward each skill.
4
getGamificationPoints
Read the learner's gamification points broken down by category for the report summary.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Adobe Learning Manager Learner Progress Report
  summary: Assemble a learner profile from their account, enrollments, skills, and gamification points.
  description: >-
    A reporting flow for Adobe Learning Manager (Captivate Prime). The workflow
    reads a user, then gathers their enrollments, acquired skills, and
    gamification points into a single consolidated learner snapshot. Every step
    spells out its request inline so the flow can be read and executed without
    opening the underlying OpenAPI description.
  version: 1.0.0
  x-realizes-capability-ids:
  - BC-300.40
  x-capability-derivation:
    method: 'deterministic join: sourceDescriptions -> per-tag OpenAPI -> tag/capability edge. No classification at this step.'
    min_confidence: 0.7
    sources:
    - capability_id: BC-300.40
      capability_name: Learning & Development Management
      spec: adobe-captivate-enrollments-api-openapi.yml
      confidence: 0.88
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: enrollmentsApi
  url: ../openapi/adobe-captivate-enrollments-api-openapi.yml
  type: openapi
- name: gamificationApi
  url: ../openapi/adobe-captivate-gamification-api-openapi.yml
  type: openapi
- name: skillsApi
  url: ../openapi/adobe-captivate-skills-api-openapi.yml
  type: openapi
- name: usersApi
  url: ../openapi/adobe-captivate-users-api-openapi.yml
  type: openapi
workflows:
- workflowId: learner-progress-report
  summary: Build a consolidated progress snapshot for a single learner.
  description: >-
    Reads the learner's user record, lists their enrollments, lists their
    acquired skills, and reads their gamification points, returning all four as
    workflow outputs.
  inputs:
    type: object
    required:
    - accessToken
    - userId
    properties:
      accessToken:
        type: string
        description: OAuth 2.0 bearer access token issued via Adobe IMS.
      userId:
        type: string
        description: The id of the learner to build the progress report for.
  steps:
  - stepId: getUser
    description: >-
      Read the learner's user record to confirm the account and capture profile
      basics for the report header.
    operationId: getUser
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.accessToken
    - name: userId
      in: path
      value: $inputs.userId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      userId: $response.body#/data/id
      name: $response.body#/data/attributes/name
      email: $response.body#/data/attributes/email
  - stepId: getEnrollments
    description: >-
      List the learner's enrollments to capture their current and completed
      course participation.
    operationId: getEnrollments
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.accessToken
    - name: filter.userId
      in: query
      value: $steps.getUser.outputs.userId
    - name: page[limit]
      in: query
      value: 100
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      enrollments: $response.body#/data
  - stepId: getUserSkills
    description: >-
      List the skills the learner has acquired, including points earned toward
      each skill.
    operationId: getUserSkills
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.accessToken
    - name: userId
      in: path
      value: $steps.getUser.outputs.userId
    - name: page[limit]
      in: query
      value: 100
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      skills: $response.body#/data
  - stepId: getGamificationPoints
    description: >-
      Read the learner's gamification points broken down by category for the
      report summary.
    operationId: getUserGamificationPoints
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.accessToken
    - name: userId
      in: path
      value: $steps.getUser.outputs.userId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      overallPoints: $response.body#/data/attributes/overallPoints
      learnerPoints: $response.body#/data/attributes/learnerPoints
  outputs:
    userId: $steps.getUser.outputs.userId
    name: $steps.getUser.outputs.name
    enrollments: $steps.getEnrollments.outputs.enrollments
    skills: $steps.getUserSkills.outputs.skills
    overallPoints: $steps.getGamificationPoints.outputs.overallPoints

Work with this as data

Every workflow 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 arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • 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 workflow
curl "https://apis.io/api/v1/arazzo/adobe-captivate-learner-progress-report-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?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.