/// <summary> /// Once the record is deleted, it will no longer appear in the API and Account Portal logs. /// </summary> /// <param name="options"> Delete Call parameters </param> /// <param name="client"> Client to make requests to Twilio </param> /// <returns> A single instance of Call </returns> public static bool Delete(DeleteCallOptions options, ITwilioRestClient client = null) { client = client ?? TwilioClient.GetRestClient(); var response = client.Request(BuildDeleteRequest(options, client)); return(response.StatusCode == System.Net.HttpStatusCode.NoContent); }
/// <summary> /// Once the record is deleted, it will no longer appear in the API and Account Portal logs. /// </summary> /// /// <param name="options"> Delete Call parameters </param> /// <param name="client"> Client to make requests to Twilio </param> /// <returns> Task that resolves to A single instance of Call </returns> public static async System.Threading.Tasks.Task <bool> DeleteAsync(DeleteCallOptions options, ITwilioRestClient client = null) { client = client ?? TwilioClient.GetRestClient(); var response = await client.RequestAsync(BuildDeleteRequest(options, client)); return(response.StatusCode == System.Net.HttpStatusCode.NoContent); }
/// <summary> /// Once the record is deleted, it will no longer appear in the API and Account Portal logs. /// </summary> /// <param name="pathSid"> Call Sid that uniquely identifies the Call to delete </param> /// <param name="pathAccountSid"> The account_sid </param> /// <param name="client"> Client to make requests to Twilio </param> /// <returns> A single instance of Call </returns> public static bool Delete(string pathSid, string pathAccountSid = null, ITwilioRestClient client = null) { var options = new DeleteCallOptions(pathSid) { PathAccountSid = pathAccountSid }; return(Delete(options, client)); }
/// <summary> /// Once the record is deleted, it will no longer appear in the API and Account Portal logs. /// </summary> /// /// <param name="pathSid"> Call Sid that uniquely identifies the Call to delete </param> /// <param name="pathAccountSid"> The account_sid </param> /// <param name="client"> Client to make requests to Twilio </param> /// <returns> Task that resolves to A single instance of Call </returns> public static async System.Threading.Tasks.Task <bool> DeleteAsync(string pathSid, string pathAccountSid = null, ITwilioRestClient client = null) { var options = new DeleteCallOptions(pathSid) { PathAccountSid = pathAccountSid }; return(await DeleteAsync(options, client)); }
private static Request BuildDeleteRequest(DeleteCallOptions options, ITwilioRestClient client) { return(new Request( HttpMethod.Delete, Rest.Domain.Api, "/2010-04-01/Accounts/" + (options.PathAccountSid ?? client.AccountSid) + "/Calls/" + options.PathSid + ".json", client.Region, queryParams: options.GetParams() )); }