Example #1
0
        /// <summary>
        /// Update properties for a Ytel number that has been purchased for your account. Refer to the parameters list for the list of properties that can be updated.
        /// </summary>
        /// <param name="Models.CreateIncomingphoneUpdatenumberInput">Object containing request parameters</param>
        /// <return>Returns the string response from the API call</return>
        public string CreateIncomingphoneUpdatenumber(Models.CreateIncomingphoneUpdatenumberInput input)
        {
            Task <string> t = CreateIncomingphoneUpdatenumberAsync(input);

            APIHelper.RunTaskSynchronously(t);
            return(t.Result);
        }
Example #2
0
        /// <summary>
        /// Update properties for a Ytel number that has been purchased for your account. Refer to the parameters list for the list of properties that can be updated.
        /// </summary>
        /// <param name="Models.CreateIncomingphoneUpdatenumberInput">Object containing request parameters</param>
        /// <return>Returns the string response from the API call</return>
        public async Task <string> CreateIncomingphoneUpdatenumberAsync(Models.CreateIncomingphoneUpdatenumberInput input)
        {
            //the base uri for api requests
            string _baseUri = Configuration.BaseUri;

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

            _queryBuilder.Append("/incomingphone/updatenumber.json");


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

            //append request with appropriate headers and parameters
            var _headers = new Dictionary <string, string>()
            {
                { "user-agent", "APIMATIC 2.0" }
            };

            //append form/field parameters
            var _fields = new List <KeyValuePair <string, Object> >()
            {
                new KeyValuePair <string, object>("PhoneNumber", input.PhoneNumber),
                new KeyValuePair <string, object>("VoiceUrl", input.VoiceUrl),
                new KeyValuePair <string, object>("FriendlyName", input.FriendlyName),
                new KeyValuePair <string, object>("VoiceMethod", input.VoiceMethod),
                new KeyValuePair <string, object>("VoiceFallbackUrl", input.VoiceFallbackUrl),
                new KeyValuePair <string, object>("VoiceFallbackMethod", input.VoiceFallbackMethod),
                new KeyValuePair <string, object>("HangupCallback", input.HangupCallback),
                new KeyValuePair <string, object>("HangupCallbackMethod", input.HangupCallbackMethod),
                new KeyValuePair <string, object>("HeartbeatUrl", input.HeartbeatUrl),
                new KeyValuePair <string, object>("HeartbeatMethod", input.HeartbeatMethod),
                new KeyValuePair <string, object>("SmsUrl", input.SmsUrl),
                new KeyValuePair <string, object>("SmsMethod", input.SmsMethod),
                new KeyValuePair <string, object>("SmsFallbackUrl", input.SmsFallbackUrl),
                new KeyValuePair <string, object>("SmsFallbackMethod", input.SmsFallbackMethod)
            };

            //remove null parameters
            _fields = _fields.Where(kvp => kvp.Value != null).ToList();

            //prepare the API call request to fetch the response
            HttpRequest _request = ClientInstance.Post(_queryUrl, _headers, _fields, Configuration.BasicAuthUserName, Configuration.BasicAuthPassword);

            //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(_response.Body);
            }
            catch (Exception _ex)
            {
                throw new APIException("Failed to parse the response: " + _ex.Message, _context);
            }
        }