









curl --request POST \
--url https://dropestore.com/wp-json/wdm/v1/send/text \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--header 'token: SEU_TOKEN_AQUI' \
--data '{
"number": "5511999999999",
"text": "Olá! Como posso ajudar?"
}'
fetch('https://dropestore.com/wp-json/wdm/v1/send/text', {
method: 'POST',
headers: {
'Accept': 'application/json',
'token': 'SEU_TOKEN_AQUI',
'Content-Type': 'application/json'
},
body: JSON.stringify({
number: '5511999999999',
text: 'Olá! Como posso ajudar?'
})
}).then(res => res.json()).then(console.log);
axios.post('https://dropestore.com/wp-json/wdm/v1/send/text', {
number: '5511999999999',
text: 'Olá! Como posso ajudar?'
}, {
headers: {
'Accept': 'application/json',
'token': 'SEU_TOKEN_AQUI',
'Content-Type': 'application/json'
}
}).then(res => console.log(res.data));
const xhr = new XMLHttpRequest();
xhr.open('POST', 'https://dropestore.com/wp-json/wdm/v1/send/text');
xhr.setRequestHeader('token', 'SEU_TOKEN_AQUI');
xhr.setRequestHeader('Content-Type', 'application/json');
xhr.onload = () => console.log(xhr.responseText);
xhr.send(JSON.stringify({
number: '5511999999999',
text: 'Olá! Como posso ajudar?'
}));
const https = require('https');
const data = JSON.stringify({
number: '5511999999999',
text: 'Olá! Como posso ajudar?'
});
const req = https.request({
hostname: 'dropestore.com',
path: '/wp-json/wdm/v1/send/text',
method: 'POST',
headers: {
'token': 'SEU_TOKEN_AQUI',
'Content-Type': 'application/json',
'Content-Length': data.length
}
}, res => {
res.on('data', d => process.stdout.write(d));
});
req.write(data);
req.end();
Até 1 dispositivo
A partir de:
Teste grátis por 2 dias
Até 3 dispositivos
A partir de:
Teste grátis por 2 dias
Até 10 dispositivos
A partir de:
Teste grátis por 2 dias
Preencha o formulário abaixo e garanta 5% de desconto na sua primeira compra. Válido por tempo limitado.