Delete plivo Application - Java Message

Java examples for Message:Plivo

Description

Delete plivo Application

Demo Code


import java.util.LinkedHashMap;

import com.plivo.sdk.client.RestAPI;
import com.plivo.sdk.exception.PlivoException;
import com.plivo.sdk.response.response.GenericResponse;


public class DeleteApplication {


  public static void main(String[] args) {

    GenericResponse response = null;/*  w ww  .ja  va2 s .  com*/
    RestAPI restApi = new RestAPI("<AUTH_ID>", "<AUTH_TOKEN>", "v1");
    LinkedHashMap<String,String> parmas = new LinkedHashMap<String,String>();
    parmas.put("acc_id", "madhu_id");
    try {
    response = restApi.deleteApplication(parmas);
    System.out.println("Application deleted with message : " + response.message);
    } 
    catch (PlivoException e) {
      e.printStackTrace();
    }
    }
}

Related Tutorials