action mist_get_client_events_definitions { label: "getClientEventsDefinitions" description: "Get List of available Client Events" provider: mist method: GET path: "/api/v1/const/client_events" encoding: json output: { type: "array" items: { type: "object" required: ["key", "display"] properties: { display: { type: "string" } key: { type: "string" } } } } }