*/
public Call redirect(String url, String method) throws TwilioRestException {
Map<String, String> vars = new HashMap<String, String>();
vars.put("Method", method);
vars.put("Url", url);
TwilioRestResponse response = this.getClient().safeRequest(this.getResourceLocation(), "POST", vars);
Call c = new Call(this.getClient(), response.toMap());
c.setRequestAccountSid(this.getRequestAccountSid());
return c;
}