Open Context Protocol is live! 🚀 Read the launch post
deleteCustomField

deleteCustomField

Delete custom field

Details

  • Method: DELETE
  • Path: /rest/api/3/field/{id}
  • Operation ID: deleteCustomField

Parameters

{
  "id": {
    "description": "The ID of a custom field.",
    "required": true,
    "location": "path",
    "type": "string"
  }
}

Usage

from ocp_agent import OCPAgent

agent = OCPAgent()
await agent.register_api('jira')

# Call this tool
result = await agent.call_tool('deleteCustomField', {
    # Add required parameters here
})