Skip to main content

Agency Saas Pause Location

Immutable Catalog Entry

This descriptor comes from the active versioned Portal catalog.

DESTRUCTIVEghl.agency_saas_pause_location
  • Contract tier: legacy
  • Risk: destructive
  • Catalog version: 2026-07-12.2
  • Descriptor hash: cc7763e349633c4d130a8df77e219de77378bf7942b1fb769d61374c7a766b3c

Pause SaaS for one GHL location. This is a high-impact Pro SaaS operation and should only be used with explicit user intent. GHL category: Launchpad / Saas. Requires an agency PIT token and company ID. Agency API is only available on the $497/mo Pro SaaS plan. This destructive agency SaaS operation can pause, disable, or otherwise materially affect SaaS access. Use only with explicit user confirmation and disposable fixtures during validation.

Request Body

{
"jsonrpc": "2.0",
"id": "ghl-agency-saas-pause-location-example",
"method": "tools/call",
"params": {
"name": "ghl.agency_saas_pause_location",
"arguments": {
"locationId": "locationId_123",
"body": {},
"query": {},
"confirmApply": "confirmApply_example"
}
}
}

Arguments Schema

{
"type": "object",
"required": [
"locationId"
],
"properties": {
"body": {
"type": "object",
"description": "Request body for this official GHL SaaS endpoint, using only fields documented by GHL.",
"additionalProperties": true
},
"query": {
"type": "object",
"description": "Optional GHL-supported query parameters for this SaaS endpoint, such as Stripe customer/subscription identifiers or pagination/filter fields from the official docs.",
"additionalProperties": true
},
"locationId": {
"type": "string",
"description": "locationId path parameter required by /saas/pause/:locationId."
},
"confirmApply": {
"type": "string",
"description": "Required for destructive SaaS operations. Set exactly to \"CONFIRM APPLY\" only after the user explicitly confirms the change."
}
},
"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-agency-saas-pause-location-example",
"method": "tools/call",
"params": {
"name": "ghl.agency_saas_pause_location",
"arguments": {
"locationId": "locationId_123",
"body": {},
"query": {},
"confirmApply": "confirmApply_example"
}
}
}'

Example Responses

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