Skip to main content

Update Calendar Notification

Immutable Catalog Entry

This descriptor comes from the active versioned Portal catalog.

WRITEghl.update_calendar_notification
  • Contract tier: agent_ready
  • Risk: write
  • Catalog version: 2026-07-12.2
  • Descriptor hash: 940e4cef5de3fde79555771a94e1f7c99e7c479a324ba8173feb5f704d64a22c

Update calendar notification GHL category: Calendars. This writes to GoHighLevel and may change account data.

Request Body

{
"jsonrpc": "2.0",
"id": "ghl-update-calendar-notification-example",
"method": "tools/call",
"params": {
"name": "ghl.update_calendar_notification",
"arguments": {
"calendarId": "calendarId_123",
"notificationId": "notificationId_123",
"body": "body_example",
"channel": "email",
"deleted": false,
"subject": "subject_example",
"isActive": false,
"tenantId": "tenantId_123",
"templateId": "templateId_123",
"receiverType": "contact"
}
}
}

Arguments Schema

{
"type": "object",
"required": [
"calendarId",
"notificationId"
],
"properties": {
"body": {
"type": "string",
"description": "Notification body"
},
"channel": {
"enum": [
"email",
"inApp"
],
"type": "string",
"description": "Notification channel"
},
"deleted": {
"type": "boolean",
"description": "Whether notification is deleted"
},
"subject": {
"type": "string",
"description": "Notification subject"
},
"isActive": {
"type": "boolean",
"description": "Whether notification is active"
},
"tenantId": {
"type": "string",
"description": "Tenant ID from list_tenants."
},
"calendarId": {
"type": "string",
"description": "Calendar ID"
},
"templateId": {
"type": "string",
"description": "Template ID"
},
"receiverType": {
"enum": [
"contact",
"guest",
"assignedUser",
"emails"
],
"type": "string",
"description": "Who receives the notification"
},
"notificationId": {
"type": "string",
"description": "Notification ID"
},
"notificationType": {
"enum": [
"booked",
"confirmation",
"cancellation",
"reminder",
"followup",
"reschedule"
],
"type": "string",
"description": "Type of notification"
}
}
}

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-update-calendar-notification-example",
"method": "tools/call",
"params": {
"name": "ghl.update_calendar_notification",
"arguments": {
"calendarId": "calendarId_123",
"notificationId": "notificationId_123",
"body": "body_example",
"channel": "email",
"deleted": false,
"subject": "subject_example",
"isActive": false,
"tenantId": "tenantId_123",
"templateId": "templateId_123",
"receiverType": "contact"
}
}
}'

Example Responses

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