action byautomata_get_contentpro_search { label: "Send search terms to receive the most relevant articles and companies." provider: byautomata method: GET path: "/contentpro-search" encoding: json input: { type: "object" properties: { terms: { type: "string" required: ["terms"] properties: { link: { type: "string" description: "Comma separated list of search terms. Ex. terms=cloud+computing,enterprise,security" } } } } required: ["terms"] additionalProperties: false } output: { type: "object" properties: { calls_per_month: { type: "string" } count_remaining: { type: "string" } data: { type: "array" items: { type: "object" properties: { article: { type: "object" properties: { link: { type: "string" } pubdate: { type: "string" } title: { type: "string" } } } company: { type: "object" properties: { companyName: { type: "string" } description: { type: "string" } employee: { type: "string" } industry: { type: "string" } linkedin: { type: "string" } twitter: { type: "string" } website: { type: "string" } } } snippets: { type: "object" properties: { description: { type: "array" items: { type: "string" } } text: { type: "array" items: { type: "string" } } title: { type: "array" items: { type: "string" } } } } } } } renewal_date: { type: "string" } } } }