Skip to main content

Tasks Push Overdue To Next Business Day

Immutable Catalog Entry

This descriptor comes from the active versioned Portal catalog.

WRITEghl.tasks_push_overdue_to_next_business_day
  • Contract tier: legacy
  • Risk: write
  • Catalog version: 2026-07-12.2
  • Descriptor hash: bed798fc0206195d4f105200736f5a38d54057693cfa8ee102c72f9e68ca6a49

Move overdue tasks to the next business day at a specific time. Non-dry-run updates must be scoped with query or assignedTo so agents cannot accidentally update an entire location. GHL category: Automation. This writes to GoHighLevel and may change account data.

Request Body

{
"jsonrpc": "2.0",
"id": "ghl-tasks-push-overdue-to-next-business-day-example",
"method": "tools/call",
"params": {
"name": "ghl.tasks_push_overdue_to_next_business_day",
"arguments": {
"hour": 1,
"limit": 1,
"query": "query_example",
"dryRun": false,
"minute": 1,
"maxTasks": 1,
"tenantId": "tenantId_123",
"timeZone": "timeZone_example",
"assignedTo": [],
"locationId": "locationId_123"
}
}
}

Arguments Schema

{
"type": "object",
"required": [],
"properties": {
"hour": {
"type": "number",
"default": 9,
"description": "Target hour (0-23)."
},
"limit": {
"type": "number",
"default": 100,
"description": "Page size for task search (max 100)."
},
"query": {
"type": "string",
"description": "Optional task search query filter."
},
"dryRun": {
"type": "boolean",
"default": false,
"description": "Preview changes without writing."
},
"minute": {
"type": "number",
"default": 0,
"description": "Target minute (0-59)."
},
"maxTasks": {
"type": "number",
"default": 200,
"description": "Maximum tasks to update."
},
"tenantId": {
"type": "string",
"description": "Tenant ID from list_tenants."
},
"timeZone": {
"type": "string",
"description": "IANA timezone (defaults to location timezone or UTC)."
},
"assignedTo": {
"type": "array",
"items": {
"type": "string"
},
"description": "Optional assigned user IDs to include."
},
"locationId": {
"type": "string",
"description": "Optional. Defaults to the authenticated runtime location; if supplied, it must match that location."
},
"strictTenant": {
"type": "boolean",
"default": true,
"description": "Require tenantId to match locationId routing (default: true)."
}
},
"additionalProperties": false
}

Output Schema

{
"type": "object",
"required": [
"ok",
"data",
"error",
"meta"
],
"properties": {
"ok": {
"type": "boolean",
"description": "Whether the GHL MCP operation completed successfully."
},
"data": {
"anyOf": [
{
"type": "object",
"additionalProperties": true
},
{
"type": "array",
"items": {}
},
{
"type": "string"
},
{
"type": "number"
},
{
"type": "boolean"
},
{
"type": "null"
}
],
"description": "Tool-specific GHL or local navigation result when ok is true."
},
"meta": {
"type": "object",
"description": "Safe execution, routing, and timing metadata.",
"additionalProperties": true
},
"error": {
"anyOf": [
{
"type": "object",
"additionalProperties": true
},
{
"type": "null"
}
],
"description": "Safe error details when ok is false; credential values are never returned."
}
},
"description": "Normalized GHL MCP response envelope.",
"additionalProperties": false
}

Code Examples

curl -X POST 'https://portal.madpanda3d.com/api/mcp' \
-H 'Authorization: Bearer mad_live_***' \
-H 'Content-Type: application/json' \
-d '{
"jsonrpc": "2.0",
"id": "ghl-tasks-push-overdue-to-next-business-day-example",
"method": "tools/call",
"params": {
"name": "ghl.tasks_push_overdue_to_next_business_day",
"arguments": {
"hour": 1,
"limit": 1,
"query": "query_example",
"dryRun": false,
"minute": 1,
"maxTasks": 1,
"tenantId": "tenantId_123",
"timeZone": "timeZone_example",
"assignedTo": [],
"locationId": "locationId_123"
}
}
}'

Example Responses

{
"ok": true,
"message": "Tool ghl.tasks_push_overdue_to_next_business_day executed successfully.",
"note": "Response shape varies by MCP tool. Inspect live responses for exact fields."
}