/// <summary> /// Delete a Service resource. /// </summary> /// <param name="options"> Delete Service parameters </param> /// <param name="client"> Client to make requests to Twilio </param> /// <returns> A single instance of Service </returns> public static bool Delete(DeleteServiceOptions options, ITwilioRestClient client = null) { client = client ?? TwilioClient.GetRestClient(); var response = client.Request(BuildDeleteRequest(options, client)); return(response.StatusCode == System.Net.HttpStatusCode.NoContent); }
/// <summary> /// Delete a Service resource. /// </summary> /// <param name="options"> Delete Service parameters </param> /// <param name="client"> Client to make requests to Twilio </param> /// <returns> Task that resolves to A single instance of Service </returns> public static async System.Threading.Tasks.Task <bool> DeleteAsync(DeleteServiceOptions options, ITwilioRestClient client = null) { client = client ?? TwilioClient.GetRestClient(); var response = await client.RequestAsync(BuildDeleteRequest(options, client)); return(response.StatusCode == System.Net.HttpStatusCode.NoContent); }
private static Request BuildDeleteRequest(DeleteServiceOptions options, ITwilioRestClient client) { return(new Request( HttpMethod.Delete, Rest.Domain.Serverless, "/v1/Services/" + options.PathSid + "", queryParams: options.GetParams() )); }
/// <summary> /// Delete a Service resource. /// </summary> /// <param name="pathSid"> The SID of the Service resource to delete </param> /// <param name="client"> Client to make requests to Twilio </param> /// <returns> Task that resolves to A single instance of Service </returns> public static async System.Threading.Tasks.Task <bool> DeleteAsync(string pathSid, ITwilioRestClient client = null) { var options = new DeleteServiceOptions(pathSid); return(await DeleteAsync(options, client)); }
/// <summary> /// Delete a Service resource. /// </summary> /// <param name="pathSid"> The SID of the Service resource to delete </param> /// <param name="client"> Client to make requests to Twilio </param> /// <returns> A single instance of Service </returns> public static bool Delete(string pathSid, ITwilioRestClient client = null) { var options = new DeleteServiceOptions(pathSid); return(Delete(options, client)); }