Home / Companies / Nylas / Blog / January 2022

January 2022 Summaries

5 posts from Nylas

Filter
Month: Year:
Post Summaries Back to Blog
The blog post provides a detailed guide on creating an Azure App to integrate with the Nylas API V3, specifically for accessing Outlook users' email, calendar, and contacts data. It explains the process of setting up the Azure App using the Azure console, emphasizing the use of hosted authentication flow, which is a no-code approach for user connection. The article outlines the necessary Azure APIs and permissions, such as openid, profile, User.Read, and Calendar.Read, to ensure proper access to user communication data. It highlights the importance of securely storing API credentials, like the Secret ID and Application ID, and demonstrates how to configure OAuth credentials in the Nylas Dashboard. The post concludes by testing the integration by connecting an Outlook account through Nylas' Hosted Authentication and encourages further exploration of Nylas documentation for continued development.
Jan 12, 2022 847 words in the original blog post.
Calendars are essential for both companies and individuals, and Nylas offers a universal Calendar API compatible with major providers, made even more accessible for Java developers through the Nylas Java SDK. This guide explores managing calendar events using the SDK, covering reading, creating, updating, and deleting calendar events in Java. The process begins with reading a list of calendars, then progresses to reading specific calendar events by using a calendar's unique ID. It further demonstrates the creation of events with specified details like time, location, and participants, and discusses updating events if details change, such as time adjustments or additional information. The guide concludes with deleting events, ensuring understanding of the complete lifecycle of event management using the Nylas Java SDK.
Jan 11, 2022 2,242 words in the original blog post.
In this blog post, the author provides a detailed guide on creating Nylas webhooks using NodeJS and deploying them as serverless functions on Vercel. The process begins with setting up a Nylas account and following a Quickstart guide to create an app. The blog explains the creation of a single endpoint that supports both GET and POST methods, which is essential for enabling Nylas webhooks. The GET method returns a challenge parameter to activate the webhook, while the POST method receives and logs triggered events such as message updates. The serverless function is deployed on Vercel, and readers are guided through creating a Nylas webhook via the dashboard to handle events like starring a message. The post emphasizes the importance of returning the challenge parameter and responding with status 200 to prevent multiple event retries. Throughout, it provides example code and references to further resources, encouraging continued exploration of Nylas' capabilities.
Jan 09, 2022 759 words in the original blog post.
Nylas, a company focused on unlocking the power of communications data, is unveiling a new brand that embodies its mission to inspire innovation and simplify complex workflows for businesses and developers worldwide. The rebranding reflects Nylas's commitment to helping disruptors and innovators by providing tools that enhance productivity through intelligence and automation, addressing the need for clear and concise data access. As it expands its reach across various industries, Nylas aims to transform communication channels like email and calendars into powerful sources of inspiration, enabling teams to work smarter and make a positive impact on communities globally. The refreshed brand underscores the company's dedication to its original ethos while embracing its broader purpose and global influence.
Jan 06, 2022 535 words in the original blog post.
The Nylas Calendar API, integrated with the Nylas Python SDK, enables developers to manage calendar events within their applications by offering functionalities such as syncing historical and future events, and performing CRUD (Create, Read, Update, Delete) operations on calendar items. The text provides a detailed walkthrough for Python developers on how to set up the SDK and execute various operations, including reading all available calendars, accessing and printing event details, creating new events, updating existing ones, and deleting events. Each operation is demonstrated through Python scripts, highlighting the simplicity and flexibility of the Nylas SDK in streamlining calendar management tasks. Additionally, it emphasizes the API's capability to notify participants of event changes, ensuring effective communication and collaboration.
Jan 04, 2022 1,357 words in the original blog post.