Agents
Delete skill
Delete a user skill (workspace owner only)
DELETE
/
api
/
agents
/
skills
/
{id}
Delete skill
curl --request DELETE \
--url https://{baseUrl}/api/v1/api/agents/skills/{id}import requests
url = "https://{baseUrl}/api/v1/api/agents/skills/{id}"
response = requests.delete(url)
print(response.text)const options = {method: 'DELETE'};
fetch('https://{baseUrl}/api/v1/api/agents/skills/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://{baseUrl}/api/v1/api/agents/skills/{id}"
req, _ := http.NewRequest("DELETE", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"message": "Success"
}⌘I
Delete skill
curl --request DELETE \
--url https://{baseUrl}/api/v1/api/agents/skills/{id}import requests
url = "https://{baseUrl}/api/v1/api/agents/skills/{id}"
response = requests.delete(url)
print(response.text)const options = {method: 'DELETE'};
fetch('https://{baseUrl}/api/v1/api/agents/skills/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://{baseUrl}/api/v1/api/agents/skills/{id}"
req, _ := http.NewRequest("DELETE", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"message": "Success"
}