Skip to main content

Connect Get Slack messages and Notion database in our serverless environment

Use this template to Get Slack messages using them to create Notion databases.

Share

Get Slack messages

Used integrations:
class SlackSourceGetMessages {
async init() {
// TODO: Create your slack credential
// More info at https://yepcode.io/docs/integrations/slack/#credential-configuration
this.slack = await yepcode.integration.slack("your-slack-credential-name");
}

async fetch(publish, done) {
// TODO: Customize your channel id
const result = await this.slack.client.conversations.history({
channel: "your-slack-channel-id",
});

for (const message of result.messages) {
await publish(message);
}
done();
}

async close() {}
}

Do you need help solving this integration with YepCode?

Let's talk

Create Notion databases

Used integrations:
class NotionTargetCreateDatabase {
async init() {
// TODO: Create your notion credential
// More info at https://yepcode.io/docs/integrations/notion/#credential-configuration
this.notion = yepcode.integration.notion("your-notion-credential-name");
}

async consume(item) {
// TODO: Customize your page content
// You may want to check the official docs:
// https://developers.notion.com/reference/create-a-database

// TODO: Customize your page id
const pageId = "your-notion-page-id";
await this.notion.databases.create({
parent: {
type: "page_id",
page_id: pageId,
},
icon: {
type: "emoji",
emoji: "🎉",
},
cover: {
type: "external",
external: {
url: item.url
},
},
title: [{
type: "text",
text: {
content: "Grocery List",
link: null,
},
}, ],
properties: {
Name: {
title: {},
},
Description: {
rich_text: {},
},
"In stock": {
checkbox: {},
},
Price: {
number: {
format: "dollar",
},
},
"Last ordered": {
date: {},
},
"Store availability": {
type: "multi_select",
multi_select: {
options: [{
name: "Duc Loi Market",
color: "blue",
},
{
name: "Rainbow Grocery",
color: "gray",
},
{
name: "Nijiya Market",
color: "purple",
},
{
name: "Gus'''s Community Market",
color: "yellow",
},
],
},
},
"+1": {
people: {},
},
Photo: {
files: {},
},
},
});
}

async close() {}
}

Other combinations

View recipes

Related recipes

FAQs

YepCode is a SaaS platform that allows to create, execute and monitor integrations and automations using source code in a serverless environment.

We like to call it the Zapier for developers, since we bring all the agility and benefits of NoCode tools (avoid server provisioning, environment configuration, deployments,...), but with all the power of being able to use a programming language like JavaScript or Python.

These recipes are a good starting point for you to build your own YepCode processes and solve your integration and automation problems.

You only have to fill the sign up form and your account will be created with our FREE plan (no credit card required).

YepCode has been created with a clear enterprise approach (multi-tenant environment, team management, high security and auditing standards, IdP integrations, on-premise options,...) so we can be the Swiss army knife of any team of engineering, especially those that need to extract or send information to external systems, and where a certain dynamism or adaptation to change is necessary in that process.

Sure! You just need to do some configuration to allow YepCode servers to connect to that service. Check our docs page to get more information.

Ask us for help to solve your integration problem

Recipes may be used in a self service approach cloning them to one YepCode account, but if you are looking for a turnkey approach, our team may help you.