/// <summary> /// Delete this Execution and all Steps relating to it. /// </summary> /// <param name="options"> Delete Execution parameters </param> /// <param name="client"> Client to make requests to Twilio </param> /// <returns> A single instance of Execution </returns> public static bool Delete(DeleteExecutionOptions options, ITwilioRestClient client = null) { client = client ?? TwilioClient.GetRestClient(); var response = client.Request(BuildDeleteRequest(options, client)); return(response.StatusCode == System.Net.HttpStatusCode.NoContent); }
/// <summary> /// Delete this Execution and all Steps relating to it. /// </summary> /// <param name="pathFlowSid"> Flow Sid. </param> /// <param name="pathSid"> Execution Sid. </param> /// <param name="client"> Client to make requests to Twilio </param> /// <returns> Task that resolves to A single instance of Execution </returns> public static async System.Threading.Tasks.Task <bool> DeleteAsync(string pathFlowSid, string pathSid, ITwilioRestClient client = null) { var options = new DeleteExecutionOptions(pathFlowSid, pathSid); return(await DeleteAsync(options, client)); }
/// <summary> /// Delete this Execution and all Steps relating to it. /// </summary> /// <param name="options"> Delete Execution parameters </param> /// <param name="client"> Client to make requests to Twilio </param> /// <returns> Task that resolves to A single instance of Execution </returns> public static async System.Threading.Tasks.Task <bool> DeleteAsync(DeleteExecutionOptions 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(DeleteExecutionOptions options, ITwilioRestClient client) { return(new Request( HttpMethod.Delete, Rest.Domain.Studio, "/v1/Flows/" + options.PathFlowSid + "/Executions/" + options.PathSid + "", queryParams: options.GetParams() )); }
/// <summary> /// Delete this Execution and all Steps relating to it. /// </summary> /// <param name="pathFlowSid"> Flow Sid. </param> /// <param name="pathSid"> Execution Sid. </param> /// <param name="client"> Client to make requests to Twilio </param> /// <returns> A single instance of Execution </returns> public static bool Delete(string pathFlowSid, string pathSid, ITwilioRestClient client = null) { var options = new DeleteExecutionOptions(pathFlowSid, pathSid); return(Delete(options, client)); }