DELETE Instances

Exclui uma sessão do WhatsApp

DETELE /instances
const body = {instance_id: "b71b8620-3280-48ef-85ab-752a6041c5fc"}
const options = {
  method: 'DELETE', 
  headers: {Authorization: 'Bearer <token>'}
  body: JSON.stringfy(body)
};


fetch('https://api.rocketsend.click/v1/instances', options)
  .then(response => response.json())
  .then(response => console.log(response))
  .catch(err => console.error(err));

Last updated