/// <summary> /// Delete a specific Challenge. /// </summary> /// <param name="options"> Delete Challenge parameters </param> /// <param name="client"> Client to make requests to Twilio </param> /// <returns> A single instance of Challenge </returns> public static bool Delete(DeleteChallengeOptions 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 Challenge. /// </summary> /// <param name="options"> Delete Challenge parameters </param> /// <param name="client"> Client to make requests to Twilio </param> /// <returns> Task that resolves to A single instance of Challenge </returns> public static async System.Threading.Tasks.Task <bool> DeleteAsync(DeleteChallengeOptions 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(DeleteChallengeOptions options, ITwilioRestClient client) { return(new Request( HttpMethod.Delete, Rest.Domain.Authy, "/v1/Services/" + options.PathServiceSid + "/Entities/" + options.PathIdentity + "/Factors/" + options.PathFactorSid + "/Challenges/" + options.PathSid + "", queryParams: options.GetParams() )); }
/// <summary> /// Delete a specific Challenge. /// </summary> /// <param name="pathServiceSid"> Service Sid. </param> /// <param name="pathIdentity"> Unique identity of the Entity </param> /// <param name="pathFactorSid"> Factor Sid. </param> /// <param name="pathSid"> A string that uniquely identifies this Challenge. </param> /// <param name="client"> Client to make requests to Twilio </param> /// <returns> Task that resolves to A single instance of Challenge </returns> public static async System.Threading.Tasks.Task <bool> DeleteAsync(string pathServiceSid, string pathIdentity, string pathFactorSid, string pathSid, ITwilioRestClient client = null) { var options = new DeleteChallengeOptions(pathServiceSid, pathIdentity, pathFactorSid, pathSid); return(await DeleteAsync(options, client)); }
/// <summary> /// Delete a specific Challenge. /// </summary> /// <param name="pathServiceSid"> Service Sid. </param> /// <param name="pathIdentity"> Unique identity of the Entity </param> /// <param name="pathFactorSid"> Factor Sid. </param> /// <param name="pathSid"> A string that uniquely identifies this Challenge. </param> /// <param name="client"> Client to make requests to Twilio </param> /// <returns> A single instance of Challenge </returns> public static bool Delete(string pathServiceSid, string pathIdentity, string pathFactorSid, string pathSid, ITwilioRestClient client = null) { var options = new DeleteChallengeOptions(pathServiceSid, pathIdentity, pathFactorSid, pathSid); return(Delete(options, client)); }