Arcade · Example Payload

Arcade Engine Hooks List Example

AgentsMCPAI AgentsAuthorizationOAuthTool CallingAgent InfrastructureLLMIntegrations

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

Top-level fields

operationmethodpathsummaryresponse

Example Payload

Raw ↑
{
  "operation": "hooks-list",
  "method": "GET",
  "path": "/v1/hooks",
  "summary": "List Hooks",
  "response": {
    "items": [
      {
        "cache_enabled": null,
        "cache_ttl_ms": null,
        "created_at": null,
        "failure_mode": null,
        "hook_point": null,
        "id": null,
        "name": null,
        "phase": null,
        "plugin_id": null,
        "priority": null,
        "status": null,
        "timeout_ms": null,
        "updated_at": null,
        "version": null
      }
    ],
    "limit": 1,
    "offset": 1,
    "page_count": 1,
    "total_count": 1
  }
}