AWorld Lab
About
API Reference
API Reference
  • App API
  • Dashboard API
  • Overview
API Download
API Download
  • App API
  • Dashboard API
AWorld.orgAWorld Trust
About
API Reference
API Reference
  • App API
  • Dashboard API
  • Overview
API Download
API Download
  • App API
  • Dashboard API
AWorld.orgAWorld Trust
AWorld.org
  1. Learning Path Assignments
  • ActivityLogs
    • Create activity log
  • Analytics
    • Get community metrics
  • Learning Paths
    • Items
      • List learning path items
    • List learning paths
    • Get learning path by ID
  • Learning Groups
    • Tags
      • List learning group tag assignments
      • Get learning group tag assignment
    • Translation
      • Get learning group translation
    • List learning groups
    • Get learning group by ID
  • Learning Path Assignments
    • Items
      • List learning path assignment items
    • Tags
      • List learning path assignment tags
      • Get learning path assignment tag by ID
    • Translation
      • Get learning path assignment translation
    • List learning path assignments
      GET
    • Get learning path assignment by ID
      GET
  • Missions
    • List missions
    • Get mission
  • Quizzes
    • Tags
      • List quiz tags
      • Get quiz tag by ID
    • Translation
      • Get quiz translation
    • List quizzes
    • Get quiz by ID
    • Submit quiz answers
  • Runtime Leaderboards
    • List runtime leaderboards
    • Get a runtime leaderboard by ID
    • Get leaderboard rankings
    • Get current user's ranking
  • Slides
    • TagAssignments
      • List slide tags
      • Get slide tag by ID
    • Translation
      • Get slide translation
    • List slides
    • Get slide by ID
    • Submit slide completion
  • Stories
    • TagAssignments
      • List story tags
      • Get story tag by ID
    • Translation
      • Get story translation
    • List stories
    • Get story by ID
    • Submit story completion
  • Streaks
    • List streaks
  • Users
    • Tags
      • List current user tags
      • Get current user tag by ID
    • Get current user
    • Get current user principal
    • Update current user
    • Get current user learning stats
  • VirtualBalances
    • List virtual balances
    • Get virtual balance by currency ID
  • VirtualTransactions
    • List virtual transactions
    • Create virtual transaction
    • Get virtual transaction by ID
    • Redeem virtual transaction
  • WorkspaceConfiguration
    • Get workspace configuration
About
API Reference
API Reference
  • App API
  • Dashboard API
  • Overview
API Download
API Download
  • App API
  • Dashboard API
AWorld.orgAWorld Trust
About
API Reference
API Reference
  • App API
  • Dashboard API
  • Overview
API Download
API Download
  • App API
  • Dashboard API
AWorld.orgAWorld Trust
AWorld.org
  1. Learning Path Assignments

Get learning path assignment by ID

GET
https://api.eu-west-1.aworld.cloud/app/v1/learning-path-assignments/{learningPathAssignmentId}
Retrieves a specific learning path assignment by its ID.
Includes learning path content, metadata, and associated information.

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Path Params

Query Params

Responses

🟢200OK
application/json
Learning path assignment retrieved successfully
Body

🟠401Unauthorized
🟠404Record Not Found
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.eu-west-1.aworld.cloud/app/v1/learning-path-assignments/?context&fields' \
--header 'Authorization: Bearer <token>'
Response Response Example
{
    "learningPathId": "string",
    "origin": "CATALOG",
    "learningPathCatalogId": "string",
    "legacyLearningPathId": "string",
    "syncWithCatalog": true,
    "title": "string",
    "description": "string",
    "image": "http://example.com",
    "estimatedDuration": 0,
    "defaultLang": "aa",
    "langs": [
        "aa"
    ],
    "items": [],
    "activities": [
        {
            "itemId": "string",
            "itemType": "activity",
            "languages": [
                "aa"
            ]
        }
    ],
    "completionRule": {
        "==": [
            1,
            1
        ]
    },
    "outcomeRule": {
        "==": [
            1,
            1
        ]
    },
    "startRule": {
        "==": [
            1,
            1
        ]
    },
    "learningPathAssignmentId": "string",
    "userId": "string",
    "learningPathRuleId": "string",
    "groupId": "string",
    "periodId": "string",
    "timeframeType": "PERMANENT",
    "startsAt": "2019-08-24T14:15:22.123Z",
    "endsAt": "2019-08-24T14:15:22.123Z",
    "state": "PENDING",
    "visibility": "LOCKED",
    "unlockedAt": "2019-08-24T14:15:22.123Z",
    "unlockedByRuleId": "string",
    "accountId": "stringstri",
    "workspaceId": "stringstri",
    "sourceRegion": "us-east-1",
    "createdAt": "2019-08-24T14:15:22.123Z",
    "updatedAt": "2019-08-24T14:15:22.123Z",
    "tags": [
        {
            "tagId": "string",
            "priority": 0,
            "createdAt": "2019-08-24T14:15:22.123Z",
            "updatedAt": "2019-08-24T14:15:22.123Z"
        }
    ],
    "translation": {
        "workspaceId": "stringstri",
        "learningPathId": "string",
        "lang": "aa",
        "title": "string",
        "image": "http://example.com",
        "description": "string",
        "accountId": "stringstri",
        "sourceRegion": "us-east-1",
        "createdAt": "2019-08-24T14:15:22.123Z",
        "updatedAt": "2019-08-24T14:15:22.123Z"
    },
    "progress": {
        "status": "NOT_STARTED",
        "outcome": "SUCCESS",
        "progress": {
            "total": 0,
            "completed": 0,
            "percentage": 0
        },
        "items": [
            {
                "itemId": "string",
                "itemType": "activity",
                "progress": "START",
                "outcome": "SUCCESS"
            }
        ],
        "currentItemId": "string",
        "currentItemType": "activity",
        "startedAt": "string",
        "completedAt": "string"
    }
}
Modified at 2026-02-10 10:38:01
Previous
List learning path assignments
Next
List missions
Built with