Example #1
0
        /// <summary>
        /// Delete a specific Customer-Profile.
        /// </summary>
        /// <param name="options"> Delete TrustProducts parameters </param>
        /// <param name="client"> Client to make requests to Twilio </param>
        /// <returns> A single instance of TrustProducts </returns>
        public static bool Delete(DeleteTrustProductsOptions options, ITwilioRestClient client = null)
        {
            client = client ?? TwilioClient.GetRestClient();
            var response = client.Request(BuildDeleteRequest(options, client));

            return(response.StatusCode == System.Net.HttpStatusCode.NoContent);
        }
Example #2
0
        /// <summary>
        /// Delete a specific Customer-Profile.
        /// </summary>
        /// <param name="options"> Delete TrustProducts parameters </param>
        /// <param name="client"> Client to make requests to Twilio </param>
        /// <returns> Task that resolves to A single instance of TrustProducts </returns>
        public static async System.Threading.Tasks.Task <bool> DeleteAsync(DeleteTrustProductsOptions options,
                                                                           ITwilioRestClient client = null)
        {
            client = client ?? TwilioClient.GetRestClient();
            var response = await client.RequestAsync(BuildDeleteRequest(options, client));

            return(response.StatusCode == System.Net.HttpStatusCode.NoContent);
        }
Example #3
0
 private static Request BuildDeleteRequest(DeleteTrustProductsOptions options, ITwilioRestClient client)
 {
     return(new Request(
                HttpMethod.Delete,
                Rest.Domain.Trusthub,
                "/v1/TrustProducts/" + options.PathSid + "",
                queryParams: options.GetParams(),
                headerParams: null
                ));
 }
Example #4
0
        /// <summary>
        /// Delete a specific Customer-Profile.
        /// </summary>
        /// <param name="pathSid"> The unique string that identifies the resource. </param>
        /// <param name="client"> Client to make requests to Twilio </param>
        /// <returns> Task that resolves to A single instance of TrustProducts </returns>
        public static async System.Threading.Tasks.Task <bool> DeleteAsync(string pathSid, ITwilioRestClient client = null)
        {
            var options = new DeleteTrustProductsOptions(pathSid);

            return(await DeleteAsync(options, client));
        }
Example #5
0
        /// <summary>
        /// Delete a specific Customer-Profile.
        /// </summary>
        /// <param name="pathSid"> The unique string that identifies the resource. </param>
        /// <param name="client"> Client to make requests to Twilio </param>
        /// <returns> A single instance of TrustProducts </returns>
        public static bool Delete(string pathSid, ITwilioRestClient client = null)
        {
            var options = new DeleteTrustProductsOptions(pathSid);

            return(Delete(options, client));
        }