Guru is reinventing knowledge sharing, providing verified information from experts on your team: where you work and when you need it most.
Go to siteThe Guru API on Pipedream enables the automation of knowledge sharing and management tasks within your team or organization. Using this API, you can programmatically interact with Guru's knowledge base, including retrieving card details, creating new cards, and updating existing content. By leveraging Pipedream's serverless platform, you can craft workflows that trigger based on events from other services, process the data, and perform actions in Guru to keep your team's knowledge up to date and accessible.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
guru: {
type: "app",
app: "guru",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.getguru.com/api/v1/teams`,
headers: {
"Accept": `application/json`,
},
auth: {
username: `${this.guru.$auth.username}`,
password: `${this.guru.$auth.api_key}`,
},
})
},
})
Sync Knowledge Base with Support Tickets: When a new support ticket is solved in Zendesk, automatically create a Guru card summarizing the issue and resolution. This ensures that your support team's knowledge is continuously updated and available for future reference.
Content Approval Workflow: Use Guru's API to flag content for review. When a new card is created in Guru, trigger a Pipedream workflow that sends a notification to a Slack channel for content approval. Once approved, update the card's status in Guru to reflect it's ready for the team.
Weekly Knowledge Digest: Set up a Pipedream workflow that runs weekly, collecting the most viewed or recently updated Guru cards. Compile this list into a digest and distribute it via email using SendGrid to keep the team informed of the latest knowledge entries and updates.
Guru uses API keys for authentication. When you connect your Guru account, Pipedream securely stores the keys so you can easily authenticate to Guru APIs in both code and no-code steps.
Guru requires their users enter their Guru login email in order to connect to their API.
To retrieve your API keys,