/// <summary> /// Remove a user role from your account's default service /// </summary> /// <param name="options"> Delete Role parameters </param> /// <param name="client"> Client to make requests to Twilio </param> /// <returns> A single instance of Role </returns> public static bool Delete(DeleteRoleOptions options, ITwilioRestClient client = null) { client = client ?? TwilioClient.GetRestClient(); var response = client.Request(BuildDeleteRequest(options, client)); return(response.StatusCode == System.Net.HttpStatusCode.NoContent); }
/// <summary> /// Remove a user role from your account's default service /// </summary> /// <param name="options"> Delete Role parameters </param> /// <param name="client"> Client to make requests to Twilio </param> /// <returns> Task that resolves to A single instance of Role </returns> public static async System.Threading.Tasks.Task <bool> DeleteAsync(DeleteRoleOptions 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(DeleteRoleOptions options, ITwilioRestClient client) { return(new Request( HttpMethod.Delete, Rest.Domain.Conversations, "/v1/Roles/" + options.PathSid + "", queryParams: options.GetParams(), headerParams: null )); }
/// <summary> /// Remove a user role from your account's default service /// </summary> /// <param name="pathSid"> The SID of the Role resource to delete </param> /// <param name="client"> Client to make requests to Twilio </param> /// <returns> Task that resolves to A single instance of Role </returns> public static async System.Threading.Tasks.Task <bool> DeleteAsync(string pathSid, ITwilioRestClient client = null) { var options = new DeleteRoleOptions(pathSid); return(await DeleteAsync(options, client)); }
/// <summary> /// Remove a user role from your account's default service /// </summary> /// <param name="pathSid"> The SID of the Role resource to delete </param> /// <param name="client"> Client to make requests to Twilio </param> /// <returns> A single instance of Role </returns> public static bool Delete(string pathSid, ITwilioRestClient client = null) { var options = new DeleteRoleOptions(pathSid); return(Delete(options, client)); }