Home / Companies / Pipedream / Blog / May 2024

May 2024 Summaries

3 posts from Pipedream

Filter
Month: Year:
Post Summaries Back to Blog
In the modern startup environment, managing teams through a "responsible freedom" approach, as popularized by Netflix, involves treating employees as autonomous adults and utilizing automation to facilitate independent operations without withholding information. By implementing a system where employees manage their own time off using simple tools like a shared Google Calendar, Slack notifications, and automation engines like Pipedream, teams can improve efficiency. The process involves setting up workflows in Pipedream to notify the team via Slack whenever someone books time off and listing who is out for the day, using Python scripts to format and manage the data. This approach enhances communication and ensures that team members are aware of each other's schedules, allowing for smooth operations and adherence to any time-off policies.
May 21, 2024 1,701 words in the original blog post.
Pipedream is a platform designed for running serverless workflows with a strong emphasis on security, including annual SOC 2 Type 2 reports and third-party penetration tests. The platform supports HIPAA workloads for Enterprise customers, allowing the processing of protected health information (PHI) in workflows and other services, with a Business Associate Agreement (BAA) required for compliance. Pipedream offers advanced security controls such as access restrictions for connected accounts, the ability to run workflows in dedicated VPCs, and options to limit or disable logging for sensitive data processing. Most Pipedream services are HIPAA-eligible, with detailed eligibility and security practices outlined in their documentation. For those seeking more information on HIPAA support or requiring a BAA, Pipedream provides guidance through their Help Center and sales team, alongside undergoing third-party audits to ensure compliance with HIPAA controls.
May 09, 2024 512 words in the original blog post.
Pipedream facilitates connecting to APIs, including GraphQL-based ones, in workflows using Python or Node.js, enabling the execution of queries and mutations within Node.js code using HTTP clients like axios or specialized GraphQL clients like urql. Unlike REST APIs, which require multiple calls for related resources, GraphQL consolidates data retrieval into a single query through one endpoint, enhancing efficiency and control. Authentication for GraphQL requests is similar to REST, often using headers to include API tokens. With axios, GraphQL requests are crafted by defining queries or mutations in the request payload, while urql offers a more structured approach with a dedicated GraphQL client, allowing for dynamic variable integration and improved data formatting. This flexibility in Pipedream allows users to choose between HTTP clients and GraphQL clients based on the complexity and needs of their API interactions.
May 03, 2024 2,131 words in the original blog post.