ibl-data-manager (3.59.0-ai-plus)
API for iblai
Bodyrequired
- application/json
- application/x-www-form-urlencoded
- multipart/form-data
List of roles (can be role IDs or objects with name, platform_key, etc.)
- Mock server
https://docs.ibl.ai/_mock/apis/ibl/api/catalog/roles/reported/
https://base.manager.iblai.app/api/catalog/roles/reported/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://docs.ibl.ai/_mock/apis/ibl/api/catalog/roles/reported/?user_id=0&username=string' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"user_id": 0,
"username": "string",
"roles": [
{
"property1": null,
"property2": null
}
],
"data": null
}'
Response
application/json
{ "user_id": 0, "username": "string", "roles": [ { … } ], "data": null }
Request
POST Retrieve programs matching query.
Params: query: The search term used to filter programs. org: The organization to which the programs belong.
Returns: A JSON response containing a list of programs that match the search criteria.
Error Conditions:
- If the request data is malformed or missing required fields, a 400 Bad Request may be returned.
- If there is an issue with the database query, a 500 Internal Server Error may be returned.
Side Effects:
- None
Special Return Codes:
- A 200 status code indicates successful retrieval of programs matching the query.
Security
PlatformApiKeyAuthentication
- application/json
- application/x-www-form-urlencoded
- multipart/form-data
- Mock server
https://docs.ibl.ai/_mock/apis/ibl/api/catalog/search/programs/
https://base.manager.iblai.app/api/catalog/search/programs/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://docs.ibl.ai/_mock/apis/ibl/api/catalog/search/programs/?org=string' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"course_list": [
{
"course_id": "string",
"name": "string",
"slug": "string"
}
],
"program_id": "string",
"name": "string",
"enabled": true,
"slug": "string",
"org": "string",
"data": null
}'
Response
application/json
{ "course_list": [ { … } ], "program_id": "string", "program_key": "string", "name": "string", "enabled": true, "slug": "string", "org": "string", "platform_key": "string", "program_type": "string", "data": null }
- Mock server
https://docs.ibl.ai/_mock/apis/ibl/api/catalog/skills/
https://base.manager.iblai.app/api/catalog/skills/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.ibl.ai/_mock/apis/ibl/api/catalog/skills/?id=0&name=string&name__iexact=string&page=0&page_size=0&platform_key=string&slug=string&sort=id' \
-H 'Authorization: YOUR_API_KEY_HERE'
Response
application/json
{ "next_page": "string", "previous_page": "string", "results": [ { … } ], "count": 0 }