Skip to main content

Conversation Create Followup Task

Immutable Catalog Entry

This descriptor comes from the active versioned Portal catalog.

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

Create (or preview) a follow-up task using a conversation ID. GHL category: Conversations. This writes to GoHighLevel and may change account data.

Request Body

{
"jsonrpc": "2.0",
"id": "ghl-conversation-create-followup-task-example",
"method": "tools/call",
"params": {
"name": "ghl.conversation_create_followup_task",
"arguments": {
"conversationId": "conversationId_123",
"dueDate": "dueDate_example",
"body": "body_example",
"title": "title_example",
"dryRun": false,
"tenantId": "tenantId_123",
"assignedTo": "assignedTo_example"
}
}
}

Arguments Schema

{
"type": "object",
"required": [
"conversationId",
"dueDate"
],
"properties": {
"body": {
"type": "string",
"description": "Task description/body."
},
"title": {
"type": "string",
"description": "Task title (default: Follow up conversation)."
},
"dryRun": {
"type": "boolean",
"default": false,
"description": "Preview changes without writing."
},
"dueDate": {
"type": "string",
"description": "Due date (ISO format)."
},
"tenantId": {
"type": "string",
"description": "Tenant ID from list_tenants."
},
"assignedTo": {
"type": "string",
"description": "User ID to assign task to."
},
"conversationId": {
"type": "string",
"description": "Conversation ID to link."
}
}
}

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-conversation-create-followup-task-example",
"method": "tools/call",
"params": {
"name": "ghl.conversation_create_followup_task",
"arguments": {
"conversationId": "conversationId_123",
"dueDate": "dueDate_example",
"body": "body_example",
"title": "title_example",
"dryRun": false,
"tenantId": "tenantId_123",
"assignedTo": "assignedTo_example"
}
}
}'

Example Responses

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