AI Agents
Create a Skill
REST API
- Overview
- Connect
- Data Sources
- AI/ML Engines
- Projects
- Models
- Tables
- Views
- Files
- Jobs
- AI Agents
AI Agents
Create a Skill
POST
/
api
/
projects
/
{projectName}
/
skills
curl --request POST \
--url http://127.0.0.1:47334/api/projects/{projectName}/skills \
--header 'Content-Type: application/json' \
--data '{
"skill": {
"name": "<string>",
"type": "<string>",
"source": "<string>",
"database": "<string>",
"tables": [
"<string>"
],
"description": "<string>"
}
}'
{
"name": "<string>",
"type": "<string>",
"source": "<string>",
"database": "<string>",
"tables": [
"<string>"
],
"description": "<string>"
}
Path Parameters
The name of the project where agent resides
Body
application/json
Response
200
application/json
Created a skill
The response is of type object
.
Was this page helpful?
curl --request POST \
--url http://127.0.0.1:47334/api/projects/{projectName}/skills \
--header 'Content-Type: application/json' \
--data '{
"skill": {
"name": "<string>",
"type": "<string>",
"source": "<string>",
"database": "<string>",
"tables": [
"<string>"
],
"description": "<string>"
}
}'
{
"name": "<string>",
"type": "<string>",
"source": "<string>",
"database": "<string>",
"tables": [
"<string>"
],
"description": "<string>"
}