Melo

Power your business with comprehensive property data delivered via the most reactive real estate API

Integrate the Melo API with the Email API

Setup the Melo API trigger to run a workflow which integrates with the Email API. Pipedream's integration platform allows you to integrate Melo and Email remarkably fast. Free for developers.

Search Properties with Melo API on New Email from Email API
Email + Melo
 
Try it
Send Yourself an Email with Email API on New Property Created (Instant) from Melo API
Melo + Email
 
Try it
New Property Created (Instant) from the Melo API

Emit new event when a new property ad is created in Melo. Requires a Production Environment.

 
Try it
New Email from the Email API

Get a unique address where you can send emails to trigger your workflow.

 
Try it
Search Properties with the Melo API

Searches properties in Melo. See the documentation

 
Try it
Send Yourself an Email with the Email API

Customize and send an email to the email address you registered with Pipedream. The email will be sent by notifications@pipedream.com.

 
Try it

Overview of Melo

Melo API enables you to manage and automate tasks related to project management and team collaboration. Utilize Melo's endpoints to create tasks, update project details, manage team assignments, and retrieve project metrics. Integrating Melo API with Pipedream allows you to connect your project management workflows with other apps and services, streamlining productivity and providing real-time updates across your tech stack.

Connect Melo

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    melo: {
      type: "app",
      app: "melo",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.melo.$auth.environment}.notif.immo/documents/properties`,
      headers: {
        "Content-Type": `application/json`,
        "X-API-KEY": `${this.melo.$auth.api_key}`,
      },
    })
  },
})

Connect Email

1
2
3
4
5
6
7
8
9
export default defineComponent({
  async run({ $ }) {
    const options = {
      subject: 'Your subject here',
      text: 'Your text here'
    };
    $.send.email(options);
  },
});