SMS/MMS
Install API SDK
npm i voipnumberSend SMS
const voipnumber = require('voipnumber')('accountId','apiToken');
const from = '+447445459147';
const to = '+447483866525';
voipnumber.sms.send(from, to, 'Thank you').then((res) => {
console.log(res);
}).catch((err) => {
console.log(err);
});{
status: 'OK',
result: {
status: 'OK',
result: {
status: 'queued',
body: 'Thank you',
timestamp_s: 1716193717,
created: '20 May 2024 08:28:37',
id: 'feefcc83-d6ae-4580-b4dc-6ee16b37ff04'
}
}
}
Response to Send SMS request
Error code
Description

Receive SMS


Last updated