action vestorly_find_custom_feed_articles { label: "findCustomFeedArticles" description: "Returns Articles by Category" provider: vestorly method: GET path: "/custom_feeds/{id}/articles" encoding: json input: { type: "object" properties: { access_token: { type: "string" } created_at_gte_days_ago: { type: "string" } id: { type: "string" } limit: { type: "string" } sort_by: { type: "string" } start: { type: "string" } text_query: { type: "string" } vestorly_auth: { type: "string" } } required: ["id", "vestorly_auth"] additionalProperties: false } output: { type: "object" additionalProperties: true } }