Dream up your own intranet site or internal wiki with simple drag & drop. Easily share and collect information, files, discussions, online forms and much more -- work better together with colleagues and clients.
Go to siteThe Papyrs API facilitates the creation and manipulation of rich text documents in your Papyrs intranet. With it, you can automate the handling of text-documents, forms, and pages within your organization's Papyrs account. When combined with Pipedream's capacity to connect to various APIs, the Papyrs API can be a powerful tool for document-driven workflow automation. You can trigger actions in Papyrs based on events from other apps, process Papyrs data for insights, or synchronize Papyrs content with external systems, databases, or file storage solutions.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
papyrs: {
type: "app",
app: "papyrs",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.papyrs.$auth.site_name}.papyrs.com/api/v1/people/all/`,
headers: {
"X-Auth-Token": `${this.papyrs.$auth.api_token}`,
},
})
},
})
Automated Employee Onboarding Documents: Create an onboarding page in Papyrs for each new employee automatically when they are added to your HR management system (e.g., BambooHR). Store necessary paperwork and guides relevant to their role, and share them with the new hire.
Customer Feedback Compilation: Collect customer feedback via a form on your website. When a new submission is received, use the Papyrs API to add this feedback to a centralized Papyrs document, making it easy for your team to review and act on.
Meeting Notes Archival: After a meeting ends in your calendar app (e.g., Google Calendar), trigger a Pipedream workflow to create a new page in Papyrs with the meeting's name and date, then append transcribed notes or summaries for future reference.
Papyrs uses API keys for authentication. When you connect your Papyrs account, Pipedream securely stores the keys so you can easily authenticate to Papyrs APIs in both code and no-code steps.
To get your API Token, go to Site Settings > Integrations & SSO > API to request API access to your account.
https://{site_name}.papyrs.com/@home/Getting-Started
.