ibl-data-manager (3.59.0-ai-plus)
API for iblai
Request
Get count of active users on the platform.
This endpoint returns the number of users who have had activity on the platform, either for all time or within a specified date range.
Query Parameters: start_date (str, optional): Start date for filtering (ISO format) end_date (str, optional): End date for filtering (ISO format)
Returns: The count of active users and change metrics compared to previous periods.
Default behavior returns the count for all time if no date range is specified.
- Mock server
https://docs.ibl.ai/_mock/apis/ibl/api/platform/orgs/{org}/users/active/count
https://base.manager.iblai.app/api/platform/orgs/{org}/users/active/count
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.ibl.ai/_mock/apis/ibl/api/platform/orgs/{org}/users/active/count?department_id=0&end_date=string&format=json&include_main_platform=true&start_date=string' \
-H 'Authorization: YOUR_API_KEY_HERE'
{ "data": { "property1": null, "property2": null }, "total": 0 }
Request
Get count of registered users on the platform.
This endpoint returns the number of users registered on the platform, either for all time or within a specified date range.
Query Parameters: start_date (str, optional): Start date for filtering (ISO format) end_date (str, optional): End date for filtering (ISO format)
Returns: The count of registered users and change metrics compared to previous periods.
Default behavior returns the count for all time if no date range is specified.
- Mock server
https://docs.ibl.ai/_mock/apis/ibl/api/platform/orgs/{org}/users/count
https://base.manager.iblai.app/api/platform/orgs/{org}/users/count
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.ibl.ai/_mock/apis/ibl/api/platform/orgs/{org}/users/count?department_id=0&end_date=string&format=json&include_main_platform=true&start_date=string' \
-H 'Authorization: YOUR_API_KEY_HERE'
{ "data": { "property1": null, "property2": null }, "total": 0 }
- Mock server
https://docs.ibl.ai/_mock/apis/ibl/api/platform/orgs/{org}/users/courses-completed/count
https://base.manager.iblai.app/api/platform/orgs/{org}/users/courses-completed/count
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.ibl.ai/_mock/apis/ibl/api/platform/orgs/{org}/users/courses-completed/count?department_id=0&end_date=string&format=json&include_main_platform=true&start_date=string' \
-H 'Authorization: YOUR_API_KEY_HERE'
{ "data": { "property1": null, "property2": null }, "total": 0 }