DELETE
/v1/organization/skills/{path}betaapiKeyorganization
When to use
Remove obsolete business context.
For agents
This soft-deletes the shared file in the selected scope.
Example
import { PermuteClient } from '@permute/sdk';
const orgClient = new PermuteClient({
apiKey: process.env.PERMUTE_API_KEY!,
});
const result = await orgClient.organizationSkills.delete('finance/revenue.md');Response
{
"data": {
"success": true,
"message": "Deleted finance/revenue.md"
}
}