Skip to content

ibl-data-manager (4.84.1-ai-plus)

API for iblai

Download OpenAPI description
Languages
Servers
Mock server
https://docs.ibl.ai/_mock/apis/ibl/
https://base.manager.iblai.app/

ai-account

Operations

ai-analytics

Operations

ai-bot

Operations

ai-finetuning

Operations

ai-index

Operations

ai-marketing

Operations

ai-media

Operations

ai-mentor

Operations

ai_mentor_orgs_users_disclaimers_create

Request

ViewSet for managing mentor disclaimers.

This viewset provides endpoints for creating and managing mentor disclaimers, which are statements or information that mentors need to share with students.

Permissions:

  • Platform administrators have full CRUD access
  • Students have read-only access
  • Unauthenticated users have no access

Endpoints:

  • GET /api/orgs/{org}/users/{user_id}/disclaimers/ - List all disclaimers
  • POST /api/orgs/{org}/users/{user_id}/disclaimers/ - Create a new disclaimer
  • GET /api/orgs/{org}/users/{user_id}/disclaimers/{id}/ - Retrieve a specific disclaimer
  • PUT/PATCH /api/orgs/{org}/users/{user_id}/disclaimers/{id}/ - Update a disclaimer
  • POST /api/orgs/{org}/users/{user_id}/disclaimers/{id}/add_mentor/ - Add mentor to disclaimer
  • POST /api/orgs/{org}/users/{user_id}/disclaimers/{id}/remove_mentor/ - Remove mentor from disclaimer

Query Parameters:

  • Supports filtering via DjangoFilterBackend
  • See DisclaimerFilterSet for available filters

Returns: List endpoint returns paginated results with disclaimer objects:

{
    "count": int,
    "next": str,
    "previous": str,
    "results": [
        {
            "id": int,
            "title": str,
            "content": str,
            "mentor": str,
            "platform": str,
            "created_at": datetime,
            "updated_at": datetime
        },
        ...
    ]
}

Detail endpoints return a single disclaimer object with the same structure

Security
PlatformApiKeyAuthentication
Path
orgstringrequired
user_idstringrequired
Bodyrequired
scopestring(ScopeEnum)
  • platform - Platform
  • mentor - Mentor
Enum"platform""mentor"
contentstringrequired
titlestring<= 120 characters
activeboolean
mentorsArray of strings(uuid)
curl -i -X POST \
  'https://docs.ibl.ai/_mock/apis/ibl/api/ai-mentor/orgs/{org}/users/{user_id}/disclaimers/' \
  -H 'Authorization: YOUR_API_KEY_HERE' \
  -H 'Content-Type: application/json' \
  -d '{
    "scope": "platform",
    "content": "string",
    "title": "string",
    "active": true,
    "mentors": [
      "497f6eca-6276-4993-bfeb-53cbbbba6f08"
    ]
  }'

Responses

Bodyapplication/json
idintegerread-onlyrequired
scopestring(ScopeEnum)
  • platform - Platform
  • mentor - Mentor
Enum"platform""mentor"
platformintegerread-onlyrequired

Platform to which the disclaimer applies.

contentstringrequired
titlestring<= 120 characters
activeboolean
created_atstring(date-time)read-onlyrequired
updated_atstring(date-time)read-onlyrequired
has_agreedbooleanread-onlyrequired
platform_keystringread-onlyrequired
mentorsArray of strings(uuid)
Response
application/json
{ "id": 0, "scope": "platform", "platform": 0, "content": "string", "title": "string", "active": true, "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z", "has_agreed": true, "platform_key": "string", "mentors": [ "497f6eca-6276-4993-bfeb-53cbbbba6f08" ] }

ai_mentor_orgs_users_disclaimers_retrieve

Request

ViewSet for managing mentor disclaimers.

This viewset provides endpoints for creating and managing mentor disclaimers, which are statements or information that mentors need to share with students.

Permissions:

  • Platform administrators have full CRUD access
  • Students have read-only access
  • Unauthenticated users have no access

Endpoints:

  • GET /api/orgs/{org}/users/{user_id}/disclaimers/ - List all disclaimers
  • POST /api/orgs/{org}/users/{user_id}/disclaimers/ - Create a new disclaimer
  • GET /api/orgs/{org}/users/{user_id}/disclaimers/{id}/ - Retrieve a specific disclaimer
  • PUT/PATCH /api/orgs/{org}/users/{user_id}/disclaimers/{id}/ - Update a disclaimer
  • POST /api/orgs/{org}/users/{user_id}/disclaimers/{id}/add_mentor/ - Add mentor to disclaimer
  • POST /api/orgs/{org}/users/{user_id}/disclaimers/{id}/remove_mentor/ - Remove mentor from disclaimer

Query Parameters:

  • Supports filtering via DjangoFilterBackend
  • See DisclaimerFilterSet for available filters

Returns: List endpoint returns paginated results with disclaimer objects:

{
    "count": int,
    "next": str,
    "previous": str,
    "results": [
        {
            "id": int,
            "title": str,
            "content": str,
            "mentor": str,
            "platform": str,
            "created_at": datetime,
            "updated_at": datetime
        },
        ...
    ]
}

Detail endpoints return a single disclaimer object with the same structure

Security
PlatformApiKeyAuthentication
Path
idintegerrequired

A unique integer value identifying this disclaimer.

orgstringrequired
user_idstringrequired
curl -i -X GET \
  'https://docs.ibl.ai/_mock/apis/ibl/api/ai-mentor/orgs/{org}/users/{user_id}/disclaimers/{id}/' \
  -H 'Authorization: YOUR_API_KEY_HERE'

Responses

Bodyapplication/json
idintegerread-onlyrequired
scopestring(ScopeEnum)
  • platform - Platform
  • mentor - Mentor
Enum"platform""mentor"
platformintegerread-onlyrequired

Platform to which the disclaimer applies.

contentstringrequired
titlestring<= 120 characters
activeboolean
created_atstring(date-time)read-onlyrequired
updated_atstring(date-time)read-onlyrequired
has_agreedbooleanread-onlyrequired
platform_keystringread-onlyrequired
mentorsArray of strings(uuid)
Response
application/json
{ "id": 0, "scope": "platform", "platform": 0, "content": "string", "title": "string", "active": true, "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z", "has_agreed": true, "platform_key": "string", "mentors": [ "497f6eca-6276-4993-bfeb-53cbbbba6f08" ] }

ai_mentor_orgs_users_disclaimers_update

Request

ViewSet for managing mentor disclaimers.

This viewset provides endpoints for creating and managing mentor disclaimers, which are statements or information that mentors need to share with students.

Permissions:

  • Platform administrators have full CRUD access
  • Students have read-only access
  • Unauthenticated users have no access

Endpoints:

  • GET /api/orgs/{org}/users/{user_id}/disclaimers/ - List all disclaimers
  • POST /api/orgs/{org}/users/{user_id}/disclaimers/ - Create a new disclaimer
  • GET /api/orgs/{org}/users/{user_id}/disclaimers/{id}/ - Retrieve a specific disclaimer
  • PUT/PATCH /api/orgs/{org}/users/{user_id}/disclaimers/{id}/ - Update a disclaimer
  • POST /api/orgs/{org}/users/{user_id}/disclaimers/{id}/add_mentor/ - Add mentor to disclaimer
  • POST /api/orgs/{org}/users/{user_id}/disclaimers/{id}/remove_mentor/ - Remove mentor from disclaimer

Query Parameters:

  • Supports filtering via DjangoFilterBackend
  • See DisclaimerFilterSet for available filters

Returns: List endpoint returns paginated results with disclaimer objects:

{
    "count": int,
    "next": str,
    "previous": str,
    "results": [
        {
            "id": int,
            "title": str,
            "content": str,
            "mentor": str,
            "platform": str,
            "created_at": datetime,
            "updated_at": datetime
        },
        ...
    ]
}

Detail endpoints return a single disclaimer object with the same structure

Security
PlatformApiKeyAuthentication
Path
idintegerrequired

A unique integer value identifying this disclaimer.

orgstringrequired
user_idstringrequired
Bodyrequired
scopestring(ScopeEnum)
  • platform - Platform
  • mentor - Mentor
Enum"platform""mentor"
contentstringrequired
titlestring<= 120 characters
activeboolean
mentorsArray of strings(uuid)
curl -i -X PUT \
  'https://docs.ibl.ai/_mock/apis/ibl/api/ai-mentor/orgs/{org}/users/{user_id}/disclaimers/{id}/' \
  -H 'Authorization: YOUR_API_KEY_HERE' \
  -H 'Content-Type: application/json' \
  -d '{
    "scope": "platform",
    "content": "string",
    "title": "string",
    "active": true,
    "mentors": [
      "497f6eca-6276-4993-bfeb-53cbbbba6f08"
    ]
  }'

Responses

Bodyapplication/json
idintegerread-onlyrequired
scopestring(ScopeEnum)
  • platform - Platform
  • mentor - Mentor
Enum"platform""mentor"
platformintegerread-onlyrequired

Platform to which the disclaimer applies.

contentstringrequired
titlestring<= 120 characters
activeboolean
created_atstring(date-time)read-onlyrequired
updated_atstring(date-time)read-onlyrequired
has_agreedbooleanread-onlyrequired
platform_keystringread-onlyrequired
mentorsArray of strings(uuid)
Response
application/json
{ "id": 0, "scope": "platform", "platform": 0, "content": "string", "title": "string", "active": true, "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z", "has_agreed": true, "platform_key": "string", "mentors": [ "497f6eca-6276-4993-bfeb-53cbbbba6f08" ] }

ai-prompt

Operations

analytics

Operations

career

Operations

catalog

Operations

core

Operations

credentials

Operations

custom-domains

Operations

features

Operations

media

Operations

notifications

Operations

scim

Operations

commerce

Operations

recommendations

Operations

reports

Operations

skills

Operations