trashCustomField
Move custom field to trash
Details
- Method:
POST - Path:
/rest/api/3/field/{id}/trash - Operation ID:
trashCustomField
Parameters
{
"id": {
"description": "The ID of a custom field.",
"required": true,
"location": "path",
"type": "string"
}
}Response Schema
{}Usage
from ocp_agent import OCPAgent
agent = OCPAgent()
await agent.register_api('jira')
# Call this tool
result = await agent.call_tool('trashCustomField', {
# Add required parameters here
})