/// <summary> /// delete /// </summary> /// /// <param name="options"> Delete SyncList parameters </param> /// <param name="client"> Client to make requests to Twilio </param> /// <returns> Task that resolves to A single instance of SyncList </returns> public static async System.Threading.Tasks.Task <bool> DeleteAsync(DeleteSyncListOptions 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 SyncList parameters </param> /// <param name="client"> Client to make requests to Twilio </param> /// <returns> A single instance of SyncList </returns> public static bool Delete(DeleteSyncListOptions 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="pathServiceSid"> The service_sid </param> /// <param name="pathSid"> The sid </param> /// <param name="client"> Client to make requests to Twilio </param> /// <returns> Task that resolves to A single instance of SyncList </returns> public static async System.Threading.Tasks.Task <bool> DeleteAsync(string pathServiceSid, string pathSid, ITwilioRestClient client = null) { var options = new DeleteSyncListOptions(pathServiceSid, pathSid); return(await DeleteAsync(options, client)); }
private static Request BuildDeleteRequest(DeleteSyncListOptions options, ITwilioRestClient client) { return(new Request( HttpMethod.Delete, Rest.Domain.Sync, "/v1/Services/" + options.PathServiceSid + "/Lists/" + options.PathSid + "", queryParams: options.GetParams() )); }
/// <summary> /// delete /// </summary> /// <param name="pathServiceSid"> The service_sid </param> /// <param name="pathSid"> The sid </param> /// <param name="client"> Client to make requests to Twilio </param> /// <returns> A single instance of SyncList </returns> public static bool Delete(string pathServiceSid, string pathSid, ITwilioRestClient client = null) { var options = new DeleteSyncListOptions(pathServiceSid, pathSid); return(Delete(options, client)); }