Skip to main content

Bulk Update Accounts

Immutable Catalog + Curated Guide

This lossless descriptor comes from the active Portal catalog and is enhanced with reviewed examples.

DESTRUCTIVEapollo.apollo_post_accounts_bulk_update
  • Contract tier: agent_ready
  • Risk: destructive
  • Catalog version: 1.0.2
  • Descriptor hash: d58155fb8ee1ff3c56926a63cb85f44f955105fa2b12bf63f5855b2ba27d6dc0

Bulk Update Accounts (POST /accounts/bulk_update). Notes: master_api_key_required, bulk_limit_1000_accounts, async_behavior.

Request Body

{
"jsonrpc": "2.0",
"id": "apollo-apollo-post-accounts-bulk-update-example",
"method": "tools/call",
"params": {
"name": "apollo.apollo_post_accounts_bulk_update",
"arguments": {
"body": {
"example": true
},
"confirm": true
}
}
}

Arguments Schema

{
"type": "object",
"properties": {
"body": {
"anyOf": [
{
"anyOf": [
{
"type": "object",
"additionalProperties": true
},
{
"type": "array",
"items": {}
}
],
"description": "Apollo JSON request body accepted by the documented endpoint."
},
{
"type": "null"
}
],
"default": null,
"description": "Apollo JSON request body accepted by the documented endpoint."
},
"params": {
"anyOf": [
{
"type": "object",
"description": "Apollo query-string parameters accepted by the documented endpoint.",
"additionalProperties": true
},
{
"type": "null"
}
],
"default": null,
"description": "Apollo query-string parameters accepted by the documented endpoint."
},
"compact": {
"anyOf": [
{
"type": "boolean",
"description": "Override the server default for token-efficient list truncation."
},
{
"type": "null"
}
],
"default": null,
"description": "Override the server default for token-efficient list truncation."
},
"confirm": {
"type": "boolean",
"default": false,
"description": "Must be true for endpoints classified as write-intent."
},
"max_items": {
"anyOf": [
{
"type": "integer",
"minimum": 1,
"description": "Maximum list items returned when compact mode is enabled."
},
{
"type": "null"
}
],
"default": null,
"description": "Maximum list items returned when compact mode is enabled."
},
"include_raw": {
"type": "boolean",
"default": false,
"description": "Include the unnormalized Apollo response in addition to normalized data."
},
"path_params": {
"anyOf": [
{
"type": "object",
"description": "Values for every {placeholder} in the documented endpoint path. Keys must match placeholder names exactly.",
"additionalProperties": true
},
{
"type": "null"
}
],
"default": null,
"description": "Values for every {placeholder} in the documented endpoint path. Keys must match placeholder names exactly."
}
},
"description": "Shared input contract for a manifest-backed Apollo endpoint tool.",
"additionalProperties": false
}

Output Schema

{
"type": "object",
"required": [
"ok",
"data",
"error",
"meta"
],
"properties": {
"ok": {
"type": "boolean",
"description": "Whether the requested operation completed successfully."
},
"data": {
"anyOf": [
{
"anyOf": [
{
"type": "object",
"additionalProperties": true
},
{
"type": "array",
"items": {}
},
{
"type": "string"
},
{
"type": "number"
},
{
"type": "boolean"
}
],
"description": "Normalized provider or navigation result."
},
{
"type": "null"
}
],
"default": null,
"description": "Normalized provider or navigation result."
},
"meta": {
"type": "object",
"description": "Safe request, pagination, and truncation metadata.",
"additionalProperties": true
},
"error": {
"anyOf": [
{
"type": "object",
"description": "Safe error details when ok is false.",
"additionalProperties": true
},
{
"type": "null"
}
],
"default": null,
"description": "Safe error details when ok is false."
}
},
"description": "Apollo MCP normalized 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": "apollo-apollo-post-accounts-bulk-update-example",
"method": "tools/call",
"params": {
"name": "apollo.apollo_post_accounts_bulk_update",
"arguments": {
"body": {
"example": true
},
"confirm": true
}
}
}'

Example Responses

{
"ok": true,
"endpoint": "/accounts/bulk_update",
"method": "POST"
}