Skip to content

ibl-data-manager (3.59.0-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-prompt

Operations

ai_prompt_orgs_users_languages_retrieve

Request

Retrieve all available prompt languages.

Args: request: The HTTP request. org: The organization/tenant identifier. user_id: The ID of the user making the request.

Returns: Response: A list of available prompt languages.

Security
PlatformApiKeyAuthentication
Path
orgstringrequired
user_idstringrequired
curl -i -X GET \
  'https://docs.ibl.ai/_mock/apis/ibl/api/ai-prompt/orgs/{org}/users/{user_id}/languages/' \
  -H 'Authorization: YOUR_API_KEY_HERE'

Responses

Bodyapplication/json
idintegerread-onlyrequired
namestring<= 255 charactersrequired
codestring or null<= 255 characters
Response
application/json
[ { "id": 1, "name": "English", "code": "en" }, { "id": 2, "name": "Spanish", "code": "es" } ]

ai_prompt_orgs_users_languages_create

Request

Create a new prompt language.

Args: request: The HTTP request containing the language data. org: The organization/tenant identifier. user_id: The ID of the user creating the language.

Returns: Response: The created prompt language.

Raises: BadRequest: If the provided data is invalid.

Security
PlatformApiKeyAuthentication
Path
orgstringrequired
user_idstringrequired
Bodyrequired
namestring<= 255 charactersrequired
codestring or null<= 255 characters
curl -i -X POST \
  'https://docs.ibl.ai/_mock/apis/ibl/api/ai-prompt/orgs/{org}/users/{user_id}/languages/' \
  -H 'Authorization: YOUR_API_KEY_HERE' \
  -H 'Content-Type: application/json' \
  -d '{
    "name": "French",
    "code": "fr"
  }'

Responses

Bodyapplication/json
idintegerread-onlyrequired
namestring<= 255 charactersrequired
codestring or null<= 255 characters
Response
application/json
{ "id": 3, "name": "French", "code": "fr" }

ai_prompt_orgs_users_languages_update

Request

Update a specific prompt language.

Args: request: The HTTP request containing the updated language data. org: The organization/tenant identifier. user_id: The ID of the user making the request. language_id: The ID of the language to update.

Returns: Response: The updated prompt language.

Raises: BadRequest: If the provided data is invalid. NotFound: If the specified language does not exist.

Security
PlatformApiKeyAuthentication
Path
language_idintegerrequired
orgstringrequired
user_idstringrequired
Bodyrequired
namestring<= 255 charactersrequired
codestring or null<= 255 characters
curl -i -X PUT \
  'https://docs.ibl.ai/_mock/apis/ibl/api/ai-prompt/orgs/{org}/users/{user_id}/languages/{language_id}/' \
  -H 'Authorization: YOUR_API_KEY_HERE' \
  -H 'Content-Type: application/json' \
  -d '{
    "name": "French (Updated)",
    "code": "fr"
  }'

Responses

Bodyapplication/json
idintegerread-onlyrequired
namestring<= 255 charactersrequired
codestring or null<= 255 characters
Response
application/json
{ "id": 3, "name": "French (Updated)", "code": "fr" }

career

Operations

catalog

Operations

core

Operations

credentials

Operations

features

Operations

media

Operations

notifications

Operations

scim

Operations

commerce

Operations

recommendations

Operations

reports

Operations

skills

Operations