Update Opportunity Status
Snapshot Catalog Entry
This page is generated from broker tools/list snapshot data.
Update the status of an opportunity (won, lost, etc.)
Request Body
{
"jsonrpc": "2.0",
"id": "ghl-update-opportunity-status-example",
"method": "tools/call",
"params": {
"name": "ghl.update_opportunity_status",
"arguments": {
"opportunityId": "opportunityId_123",
"status": "open",
"tenantId": "tenantId_123",
"confirmApply": "confirmApply_example",
"dryRun": false
}
}
}
Arguments Schema
{
"type": "object",
"properties": {
"tenantId": {
"type": "string"
},
"confirmApply": {
"type": "string"
},
"opportunityId": {
"type": "string"
},
"status": {
"type": "string",
"enum": [
"open",
"won",
"lost",
"abandoned"
]
},
"dryRun": {
"type": "boolean"
}
},
"required": [
"opportunityId",
"status"
]
}
Code Examples
- cURL
- Node.js
- Python
curl -X POST 'https://madpanda3d.com/lab/mad-mcps/portal/api/mcp' \
-H 'Authorization: Bearer mad_live_***' \
-H 'Content-Type: application/json' \
-d '{
"jsonrpc": "2.0",
"id": "ghl-update-opportunity-status-example",
"method": "tools/call",
"params": {
"name": "ghl.update_opportunity_status",
"arguments": {
"opportunityId": "opportunityId_123",
"status": "open",
"tenantId": "tenantId_123",
"confirmApply": "confirmApply_example",
"dryRun": false
}
}
}'
const response = await fetch('https://madpanda3d.com/lab/mad-mcps/portal/api/mcp', {
method: 'POST',
headers: {
Authorization: 'Bearer mad_live_***',
'Content-Type': 'application/json',
},
body: JSON.stringify({
"jsonrpc": "2.0",
"id": "ghl-update-opportunity-status-example",
"method": "tools/call",
"params": {
"name": "ghl.update_opportunity_status",
"arguments": {
"opportunityId": "opportunityId_123",
"status": "open",
"tenantId": "tenantId_123",
"confirmApply": "confirmApply_example",
"dryRun": false
}
}
}),
});
const data = await response.json();
console.log(data);
import requests
url = 'https://madpanda3d.com/lab/mad-mcps/portal/api/mcp'
headers = {
'Authorization': 'Bearer mad_live_***',
'Content-Type': 'application/json',
}
payload = {
"jsonrpc": "2.0",
"id": "ghl-update-opportunity-status-example",
"method": "tools/call",
"params": {
"name": "ghl.update_opportunity_status",
"arguments": {
"opportunityId": "opportunityId_123",
"status": "open",
"tenantId": "tenantId_123",
"confirmApply": "confirmApply_example",
"dryRun": false
}
}
}
response = requests.post(url, headers=headers, json=payload, timeout=60)
print(response.json())
Example Responses
- 200 Success
- 502 Upstream Error
{
"ok": true,
"message": "Tool ghl.update_opportunity_status executed successfully.",
"note": "Response shape varies by MCP tool. Inspect live responses for exact fields."
}
{
"ok": false,
"classification": "upstream_http_error",
"message": "Upstream MCP returned a non-success status."
}