I need to be able to run a node script to delete an object from an external API. So I should be able to run this command:
node server.js Customer55555
And it should delete the object.
I have called to the API by using Axios.
const axios = require("axios");
const API = "http://dummy.restapiexample.com/api/v1/employees";
function getAllEmployees() {
  axios
    .get("http://dummy.restapiexample.com/api/v1/employees")
    .then(response => {
      //   console.log(response.data);
      console.log(response.status);
      function filterEmployee() {
        const employeeData = response.data;
        employeeData.filter(employee => {
          console.log(employee);
        });
        // console.log(employeeData);
      }
      filterEmployee();
    })
    .catch(error => {
      console.log(error);
    });
}
function deleteEmployee() {
  axios({
    method: "DELETE",
    url: "http://dummy.restapiexample.com/api/v1/delete/36720",
    headers: { "Content-Type": "application/json" }
  })
    .then(
      // Observe the data keyword this time. Very important
      // payload is the request body
      // Do something
      console.log("user deleted")
    )
    .catch(function(error) {
      // handle error
      console.log(error);
    });
}
// getAllEmployees();
deleteEmployee();
I am able to get an individual object, but I need to figure out how to delete it by running the command above.
 
    