/// <summary> /// Delete a specific Flow. /// </summary> /// <param name="options"> Delete Flow parameters </param> /// <param name="client"> Client to make requests to Twilio </param> /// <returns> A single instance of Flow </returns> public static bool Delete(DeleteFlowOptions 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 specific Flow. /// </summary> /// <param name="options"> Delete Flow parameters </param> /// <param name="client"> Client to make requests to Twilio </param> /// <returns> Task that resolves to A single instance of Flow </returns> public static async System.Threading.Tasks.Task <bool> DeleteAsync(DeleteFlowOptions 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(DeleteFlowOptions options, ITwilioRestClient client) { return(new Request( HttpMethod.Delete, Rest.Domain.Preview, "/Studio/Flows/" + options.PathSid + "", client.Region, queryParams: options.GetParams() )); }
/// <summary> /// Delete a specific Flow. /// </summary> /// <param name="pathSid"> A string that uniquely identifies this Flow. </param> /// <param name="client"> Client to make requests to Twilio </param> /// <returns> Task that resolves to A single instance of Flow </returns> public static async System.Threading.Tasks.Task <bool> DeleteAsync(string pathSid, ITwilioRestClient client = null) { var options = new DeleteFlowOptions(pathSid); return(await DeleteAsync(options, client)); }
/// <summary> /// Delete a specific Flow. /// </summary> /// <param name="pathSid"> A string that uniquely identifies this Flow. </param> /// <param name="client"> Client to make requests to Twilio </param> /// <returns> A single instance of Flow </returns> public static bool Delete(string pathSid, ITwilioRestClient client = null) { var options = new DeleteFlowOptions(pathSid); return(Delete(options, client)); }