action vestorly_find_event_by_id { label: "findEventByID" description: "Returns a single event if the user has access" provider: vestorly method: GET path: "/events/{id}" encoding: json input: { type: "object" properties: { access_token: { type: "string" } id: { type: "string" } vestorly_auth: { type: "string" } } required: ["id", "vestorly_auth"] additionalProperties: false } output: { type: "object" additionalProperties: true } }