Budibase
Budibase is an open-source platform that helps businesses quickly create internal tools and web applications without extensive programming. It offers a low-code interface for building custom applications like dashboards, workflows, and data management systems. Users can connect various data sources such as databases and APIs, and then use Budibase's drag-and-drop builder to design and automate processes. The platform is suitable for creating apps that optimize business operations, enhance collaboration, and efficiently manage internal data. Budibase is ideal for organizations that need to create internal tools quickly and cost-effectively with minimal technical expertise.
Code to Send SMS
const sendSMS = async (message, recipient) => {
const response = await fetch('https://api.seven.io/sms', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Authorization': 'Bearer YOUR_API_KEY'
},
body: JSON.stringify({
text: message,
to: recipient
})
});
return response.json();
};
- 1
Obtain API Key
Register with seven and obtain your API key.
- 2
Insert JavaScript Code
Insert the JavaScript code provided above into your Budibase workflow.
- 3
Send SMS
Use the
sendSMS
function to send an SMS by specifying the message and recipient.