curl --location 'https://enotify.io/api/1.1/wf/demo' \ --header 'Authorization: Bearer e3a0fcaca1ac3e7f160e8824c92eda3c' \ --form 'sid="1111"' \ --form 'to="4155551212"' \ --form 'subject="Referral Received"' \ --form 'body="You have a new referral! Please call 888-888-8888 to speak with Jessie from ABC Cleaners. They are looking for a new water system."' \ --form 'sk="2nCuOWPYbdZD6cPo8gNK8NZ8kqP40awg"'
Try it! Send a Message.
Simply replace the "to" with your number!
<?php
$curl = curl_init();
curl_setopt_array($curl, array( CURLOPT_URL => 'https://enotify.io/api/1.1/wf/demo', CURLOPT_RETURNTRANSFER => true, CURLOPT_ENCODING => '', CURLOPT_MAXREDIRS => 10, CURLOPT_TIMEOUT => 0, CURLOPT_FOLLOWLOCATION => true, CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1, CURLOPT_CUSTOMREQUEST => 'POST', CURLOPT_POSTFIELDS => array('sid' => '1111','to' => '4155551212','subject' => 'Referral Received','body' => 'You have a new referral! Please call 888-888-8888 to speak with Jessie from ABC Cleaners. They are looking for a new water system.', 'sk' => '2nCuOWPYbdZD6cPo8gNK8NZ8kqP40awg'), CURLOPT_HTTPHEADER => array( 'Authorization: Bearer e3a0fcaca1ac3e7f160e8824c92eda3c' ), ));
$response = curl_exec($curl);
curl_close($curl); echo $response;
Try it! Send a Message.
Simply replace the "to" with your number!
const myHeaders = new Headers(); myHeaders.append("Authorization", "Bearer e3a0fcaca1ac3e7f160e8824c92eda3c");
const formdata = new FormData(); formdata.append("sid", "1111"); formdata.append("to", "4155551212"); formdata.append("subject", "Referral Received"); formdata.append("body", "You have a new referral! Please call 888-888-8888 to speak with Jessie from ABC Cleaners. They are looking for a new water system."); formdata.append("sk", "2nCuOWPYbdZD6cPo8gNK8NZ8kqP40awg");
Setup your developer account. All you need is to provide an email and password.
2
Review Simple API
Our docs walk you through a simple API call to send your first message.
3
Send Your 1st Message
Try it in PostMan, use our one time quick sender, or integrate right into your website, SaaS or platform.
Testimonials
RealStories.
I have a small virtual doorbell app that was just a side project. However, recent campaign registry fees caused my costs to go higher and higher. eNotify solved this problem for me.
SCOTT ERIC
VBELL.IO
Super easy to use. We have a payments app that sends out receipts. We had it up and running the same day we tested it out.
Daniel Paige
Dir. of Product
We already had push notifications working on our website, but it didn’t reach any iOS users. Using eNotify solves this for us and is a way easier approach.
TAYLOR YAMAGUCHI
Marketing Manager
Our NPS score actually went up once we integrated eNotify into our alert system. This is due to them having the help button right on the top. It just looks so much cleaner to customers.
Miguel Dela Cruz
Head of Customer Success
Built for integration
Flexibility
API
Plugins
Zapier
Customers
Users
Community
Not sure where to start? Reach out to us, we will gladly help you.
On eNotify Inbox, users grant permission once to receive notifications from all verified senders. However, it's important to treat your notifications as opt-in. This means:
Focus on sending relevant and valuable messages: Don't spam users with irrelevant notifications.
Provide clear value in your notifications: Let users know why they should receive updates from you.
Keep in mind, users can block senders: All users can easily opt-out of receiving notifications from you if they no longer find them valuable. High block rates may result in account suspension.
By following these practices, you'll build trust with users and ensure they remain engaged with your notifications.
While we don't currently support embedding images directly within the notification itself, similar to SMS, notifications are text-based. However, to enhance user recognition, we can display your logo prominently within the eNotify Inbox app, both with the notification and at the top of your message. This ensures brand association and builds trust with your users.
eNotify utilizes a two-pronged approach to safeguard sensitive messages like OTPs:
1. Encryption: Messages are encrypted during transit between your server and the eNotify platform, ensuring they remain unreadable by anyone who might intercept them.
2. Verified Inbox Access: Only the eNotify Inbox app on a user's phone can decrypt and display the message. This app is secured with phone number validation, guaranteeing the message reaches the intended recipient and cannot be accessed on unauthorized devices.
Integrations with WordPress and Shopify are a high priority for us! We're actively developing these plugins and expect to release them by the end of the year. In the meantime, there are some creative workarounds to provide a seamless notification experience for your users.
Absolutely! We offer a free tier account that allows you to experiment with the core eNotify functionalities and integrate it into your development environment. It has some limitations on message volume and features compared to our paid plans. However, if you'd like to explore features exclusive to higher plans, feel free to contact our sales team. We're happy to discuss your specific needs and create a customized trial experience.