Arcade · Example Payload

Arcade Engine Hooks Create Example

AgentsMCPAI AgentsAuthorizationOAuthTool CallingAgent InfrastructureLLMIntegrations

Arcade Engine Hooks Create 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-create",
  "method": "POST",
  "path": "/v1/hooks",
  "summary": "Create a Hook",
  "request": {
    "failure_mode": "fail_closed",
    "hook_point": "tool.access",
    "name": "string",
    "phase": "before",
    "plugin_id": "string",
    "priority": 1,
    "status": "active",
    "timeout_ms": 1
  },
  "response": {
    "cache_enabled": true,
    "cache_ttl_ms": 1,
    "created_at": "string",
    "failure_mode": "fail_closed",
    "hook_point": "string",
    "id": "string",
    "name": "string",
    "phase": "before",
    "plugin_id": "string",
    "priority": 1,
    "status": "active",
    "timeout_ms": 1,
    "updated_at": "string",
    "version": 1
  }
}