Input schema (server-provided preview — do not copy)
{
"type": "object",
"title": "update_agent_healthArguments",
"required": [
"agent_id",
"api_key"
],
"properties": {
"paused": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"title": "Paused",
"default": null
},
"api_key": {
"type": "string",
"title": "Api Key"
},
"agent_id": {
"type": "string",
"title": "Agent Id"
},
"webhook_url": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Webhook Url",
"default": null
},
"endpoint_url": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Endpoint Url",
"default": null
},
"checks_config": {
"anyOf": [
{
"type": "object",
"additionalProperties": true
},
{
"type": "null"
}
],
"title": "Checks Config",
"default": null
},
"heartbeat_enabled": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"title": "Heartbeat Enabled",
"default": null
},
"check_interval_sec": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"title": "Check Interval Sec",
"default": null
}
}
}