action sms77_hooks_get { label: "HooksGet" provider: sms77 method: GET path: "/hooks" encoding: json input: { type: "object" properties: { action: { type: "string" enum: ["read"] } } required: ["action"] additionalProperties: false } output: { type: "object" properties: { hooks: { type: "array" items: { type: "object" properties: { created: { type: "string" } event_type: { type: "string" } id: { type: "string" } request_method: { type: "string" } target_url: { type: "string" } } } } success: { type: "boolean" } } } }