/// <summary> /// delete /// </summary> /// /// <param name="options"> Delete PhoneNumber parameters </param> /// <param name="client"> Client to make requests to Twilio </param> /// <returns> Task that resolves to A single instance of PhoneNumber </returns> public static async System.Threading.Tasks.Task <bool> DeleteAsync(DeletePhoneNumberOptions options, ITwilioRestClient client = null) { client = client ?? TwilioClient.GetRestClient(); var response = await client.RequestAsync(BuildDeleteRequest(options, client)); return(response.StatusCode == System.Net.HttpStatusCode.NoContent); }
/// <summary> /// delete /// </summary> /// /// <param name="options"> Delete PhoneNumber parameters </param> /// <param name="client"> Client to make requests to Twilio </param> /// <returns> A single instance of PhoneNumber </returns> public static bool Delete(DeletePhoneNumberOptions options, ITwilioRestClient client = null) { client = client ?? TwilioClient.GetRestClient(); var response = client.Request(BuildDeleteRequest(options, client)); return(response.StatusCode == System.Net.HttpStatusCode.NoContent); }
/// <summary> /// delete /// </summary> /// <param name="pathTrunkSid"> The SID of the Trunk from which to delete the PhoneNumber resource </param> /// <param name="pathSid"> The unique string that identifies the resource </param> /// <param name="client"> Client to make requests to Twilio </param> /// <returns> Task that resolves to A single instance of PhoneNumber </returns> public static async System.Threading.Tasks.Task <bool> DeleteAsync(string pathTrunkSid, string pathSid, ITwilioRestClient client = null) { var options = new DeletePhoneNumberOptions(pathTrunkSid, pathSid); return(await DeleteAsync(options, client)); }
private static Request BuildDeleteRequest(DeletePhoneNumberOptions options, ITwilioRestClient client) { return(new Request( HttpMethod.Delete, Rest.Domain.Trunking, "/v1/Trunks/" + options.PathTrunkSid + "/PhoneNumbers/" + options.PathSid + "", queryParams: options.GetParams() )); }
/// <summary> /// delete /// </summary> /// /// <param name="pathTrunkSid"> The trunk_sid </param> /// <param name="pathSid"> The sid </param> /// <param name="client"> Client to make requests to Twilio </param> /// <returns> A single instance of PhoneNumber </returns> public static bool Delete(string pathTrunkSid, string pathSid, ITwilioRestClient client = null) { var options = new DeletePhoneNumberOptions(pathTrunkSid, pathSid); return(Delete(options, client)); }