action vestorly_find_advisor_by_id { label: "findAdvisorByID" description: "Returns a single advisor given their ID" provider: vestorly method: GET path: "/advisors/{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 } }