To integrate Comify into your application, you’ll first need to create a Comify account and set up a service provider in the Comify Dashboard. Follow these steps to get started:

Getting Started

1

Create a Comify Account

Create a Comify account on Comify or Sign In if you already have one.

2

Add the SDK into your project

Choose the sdk that best suits your use case and follow the SDK installation instructions:

npm install comify-node
3

Configure API Keys

To access Comify, set the COMIFY_API_KEY in your environment variables. You can find your API key in the developer section of your Comify dashboard.

For security reasons, it’s best to store your API key as an environment variable.

COMIFY_API_KEY=YOUR_API_KEY
4

Add Your Service Provider

In order to send communications, you’ll need to add a service provider. Follow the instructions for your service provider of choice

5

Add Your Templates

In order to send communications, you’ll need to add standart templates for each service provider. Follow the instructions for your service provider of choice

6

Send your first communication

Choose the sdk that best suits your use case and follow the SDK installation instructions:

const { Comify } = require('comify-node')

const comm = new Comify('COMIFY_API_KEY')

comm.triggerComm('template_name',{ 
  "order_id" : "123455",
  "billing" : {
    "customerEmail" : "contact@comify.io",
    "customerName" : "Comify"
  }
}, 'email')
7

Join the Comify Community

In case you have any questions or feedback, you can contact us on support@comify.io or join our community of developers and users on Discord.

Now that you triggered your first communication, learn more about the advanced features and concepts of Comify.