ibl-data-manager (3.59.0-ai-plus)
API for iblai
- application/json
- application/x-www-form-urlencoded
- multipart/form-data
List of skills (can be skill IDs or objects with name, platform_key, etc.)
- Mock server
https://docs.ibl.ai/_mock/apis/ibl/api/catalog/skills/desired/
https://base.manager.iblai.app/api/catalog/skills/desired/
- 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/skills/desired/?user_id=0&username=string' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"user_id": 0,
"username": "string",
"skills": [
{
"property1": null,
"property2": null
}
],
"data": null
}'
{ "user_id": 0, "username": "string", "skills": [ { … } ], "data": null }
- Mock server
https://docs.ibl.ai/_mock/apis/ibl/api/catalog/skills/public/
https://base.manager.iblai.app/api/catalog/skills/public/
- 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/skills/public/ \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"id": 0,
"name": "string",
"slug": "string",
"platform_key": "string",
"data": null
}'
{ "id": 0, "name": "string", "platform_key": "string", "slug": "string", "data": null }
Request
GET Retrieve desired skills for user
Params: name id slug
This method retrieves the skills reported by a user. It requires either a user_id or username to identify the user. If the user is found and has reported skills, the first reported skill is serialized and returned with a status code of 200. If no skills are found, a status code of 400 is returned.
Error Conditions:
- If the user cannot be identified, a 400 status code is returned.
- If no reported skills exist for the user, a 400 status code is returned.
- Mock server
https://docs.ibl.ai/_mock/apis/ibl/api/catalog/skills/reported/
https://base.manager.iblai.app/api/catalog/skills/reported/
- 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/reported/?user_id=0&username=string' \
-H 'Authorization: YOUR_API_KEY_HERE'
{ "user_id": 0, "username": "string", "skills": [ { … } ], "data": null }