Example #1
0
        /// <summary>
        /// Unregister a credit card
        /// </summary>
        /// <param name="body">Required parameter: Example: </param>
        /// <return>Returns the Models.UnregisterCreditCardResponseModel response from the API call</return>
        public Models.UnregisterCreditCardResponseModel CreateUnregisterCreditCard(Models.UnregisterCreditCardRequestModel body)
        {
            Task <Models.UnregisterCreditCardResponseModel> t = CreateUnregisterCreditCardAsync(body);

            APIHelper.RunTaskSynchronously(t);
            return(t.Result);
        }
Example #2
0
        /// <summary>
        /// Unregister a credit card
        /// </summary>
        /// <param name="body">Required parameter: Example: </param>
        /// <return>Returns the Models.UnregisterCreditCardResponseModel response from the API call</return>
        public async Task <Models.UnregisterCreditCardResponseModel> CreateUnregisterCreditCardAsync(Models.UnregisterCreditCardRequestModel body)
        {
            //validating required parameters
            if (null == body)
            {
                throw new ArgumentNullException("body", "The parameter \"body\" is a required parameter and cannot be null.");
            }

            //the base uri for api requests
            string _baseUri = Configuration.GetBaseURI();

            //prepare query string for API call
            StringBuilder _queryBuilder = new StringBuilder(_baseUri);

            _queryBuilder.Append("/creditCardUnregisters");


            //validate and preprocess url
            string _queryUrl = APIHelper.CleanUrl(_queryBuilder);

            //append request with appropriate headers and parameters
            var _headers = new Dictionary <string, string>()
            {
                { "user-agent", "TangoCardv2NGSDK" },
                { "accept", "application/json" },
                { "content-type", "application/json; charset=utf-8" }
            };

            //append body params
            var _body = APIHelper.JsonSerialize(body);

            //prepare the API call request to fetch the response
            HttpRequest _request = ClientInstance.PostBody(_queryUrl, _headers, _body, Configuration.PlatformName, Configuration.PlatformKey);

            //invoke request and get response
            HttpStringResponse _response = (HttpStringResponse)await ClientInstance.ExecuteAsStringAsync(_request).ConfigureAwait(false);

            HttpContext _context = new HttpContext(_request, _response);

            //handle errors defined at the API level
            base.ValidateResponse(_response, _context);

            try
            {
                return(APIHelper.JsonDeserialize <Models.UnregisterCreditCardResponseModel>(_response.Body));
            }
            catch (Exception _ex)
            {
                throw new APIException("Failed to parse the response: " + _ex.Message, _context);
            }
        }