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

restoreCustomField

Restore custom field from trash

Details

  • Method: POST
  • Path: /rest/api/3/field/{id}/restore
  • Operation ID: restoreCustomField

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('restoreCustomField', {
    # Add required parameters here
})