Delete Skill
SkillDeleteResponse beta().skills().delete(SkillDeleteParamsparams = SkillDeleteParams.none(), RequestOptionsrequestOptions = RequestOptions.none())
/v1/skills/{skill_id}?beta=true
Delete Skill
Parameters
Returns
Delete Skill
Java
package com.anthropic.example;
import com.anthropic.client.AnthropicClient;
import com.anthropic.client.okhttp.AnthropicOkHttpClient;
import com.anthropic.models.beta.skills.SkillDeleteParams;
import com.anthropic.models.beta.skills.SkillDeleteResponse;
public final class Main {
private Main() {}
public static void main(String[] args) {
AnthropicClient client = AnthropicOkHttpClient.fromEnv();
SkillDeleteResponse skill = client.beta().skills().delete("skill_id");
}
}{
"id": "skill_01JAbcdefghijklmnopqrstuvw",
"type": "type"
}Returns Examples
{
"id": "skill_01JAbcdefghijklmnopqrstuvw",
"type": "type"
}