changeFilterOwner
Change filter owner
Details
- Method:
PUT - Path:
/rest/api/3/filter/{id}/owner - Operation ID:
changeFilterOwner
Parameters
{
"id": {
"description": "The ID of the filter to update.",
"required": true,
"location": "path",
"type": "integer",
"format": "int64"
},
"accountId": {
"description": "The account ID of the new owner.",
"required": true,
"location": "body",
"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('changeFilterOwner', {
# Add required parameters here
})