ibl-data-manager (3.59.0-ai-plus)
API for iblai
- Mock server
https://docs.ibl.ai/_mock/apis/ibl/api/core/users/search/
https://base.manager.iblai.app/api/core/users/search/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.ibl.ai/_mock/apis/ibl/api/core/users/search/?page=0&page_size=0&query=string&sort=string' \
-H 'Authorization: YOUR_API_KEY_HERE'
{ "count": 35, "next_page": 4, "previous_page": 2, "results": [ { … }, { … }, { … } ] }
Request
Get a list of departments with metrics and filtering options.
This endpoint provides a paginated list of departments with aggregated metrics about learner performance, course completions, and skill acquisition.
Query Parameters: page (int, optional): Page number for pagination length (int, optional): Number of items per page program (str, optional): Filter by program pathway (str, optional): Filter by pathway departments (list, optional): Filter by department ids department_id (str, optional): Filter by department id location (str, optional): Filter by location is_enrolled (bool, optional): Filter for departments with enrolled users start_date (date, optional): Filter by learner join date (start range) end_date (date, optional): Filter by learner join date (end range)
Returns: A paginated list of departments with comprehensive metrics.
- Mock server
https://docs.ibl.ai/_mock/apis/ibl/api/departments/orgs/{org}/
https://base.manager.iblai.app/api/departments/orgs/{org}/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.ibl.ai/_mock/apis/ibl/api/departments/orgs/{org}/?department_id=0&departments=string&end_date=2019-08-24&format=json&include_main_platform=true&is_enrolled=true&length=0&location=string&page=0&pathway=string&program=string&start_date=2019-08-24' \
-H 'Authorization: YOUR_API_KEY_HERE'
{ "data": [ { … } ], "pagination": { "totalItems": 0, "currentPage": 0, "perPage": 0, "totalPages": 0 } }
Request
Retrieve a user's desired role information.
This endpoint returns the role and skills that a user has indicated they want to develop or acquire. This represents the user's career goals and learning objectives.
Path Parameters: org (str): The platform/organization identifier username (str): The username of the user to retrieve role information for
Returns: The user's desired role information including:
- Target role title
- Skills needed for the role
- Current progress toward skill acquisition
Error Responses: 400 Bad Request: If the user doesn't exist in the platform or has no desired role 404 Not Found: If the specified platform doesn't exist
- Mock server
https://docs.ibl.ai/_mock/apis/ibl/api/roles/platform/orgs/{org}/roles/users/{username}/desired-roles/
https://base.manager.iblai.app/api/roles/platform/orgs/{org}/roles/users/{username}/desired-roles/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.ibl.ai/_mock/apis/ibl/api/roles/platform/orgs/{org}/roles/users/{username}/desired-roles/' \
-H 'Authorization: YOUR_API_KEY_HERE'
{ "user_id": 0, "username": "string", "roles": [ { … } ], "data": null }