Arcade · Example Payload

Arcade Engine Hooks Bulk Upsert Example

AgentsMCPAI AgentsAuthorizationOAuthTool CallingAgent InfrastructureLLMIntegrations

Arcade Engine Hooks Bulk Upsert Example is an example object payload from Arcade, with 6 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationmethodpathsummaryrequestresponse

Example Payload

Raw ↑
{
  "operation": "hooks-bulk-upsert",
  "method": "PATCH",
  "path": "/v1/hooks/bulk",
  "summary": "Bulk Upsert Hooks",
  "request": {
    "configs": [
      {
        "failure_mode": null,
        "hook_point": null,
        "phase": null,
        "plugin_id": null,
        "priority": null,
        "status": null
      }
    ]
  },
  "response": {
    "failed": 1,
    "results": [
      {
        "action": null,
        "error": null,
        "hook_id": null,
        "hook_point": null,
        "plugin_id": null
      }
    ],
    "success": 1
  }
}