Пример #1
0
        /// <summary>
        /// You can experiment with initiating a call through Ytel and view the request response generated when doing so and get the response in json
        /// </summary>
        /// <param name="Models.CreateCallsMakecallInput">Object containing request parameters</param>
        /// <return>Returns the string response from the API call</return>
        public string CreateCallsMakecall(Models.CreateCallsMakecallInput input)
        {
            Task <string> t = CreateCallsMakecallAsync(input);

            APIHelper.RunTaskSynchronously(t);
            return(t.Result);
        }
Пример #2
0
        /// <summary>
        /// You can experiment with initiating a call through Ytel and view the request response generated when doing so and get the response in json
        /// </summary>
        /// <param name="Models.CreateCallsMakecallInput">Object containing request parameters</param>
        /// <return>Returns the string response from the API call</return>
        public async Task <string> CreateCallsMakecallAsync(Models.CreateCallsMakecallInput input)
        {
            //the base uri for api requests
            string _baseUri = Configuration.BaseUri;

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

            _queryBuilder.Append("/calls/makecall.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>("From", input.From),
                new KeyValuePair <string, object>("To", input.To),
                new KeyValuePair <string, object>("Url", input.Url),
                new KeyValuePair <string, object>("Method", input.Method),
                new KeyValuePair <string, object>("StatusCallBackUrl", input.StatusCallBackUrl),
                new KeyValuePair <string, object>("StatusCallBackMethod", input.StatusCallBackMethod),
                new KeyValuePair <string, object>("FallBackUrl", input.FallBackUrl),
                new KeyValuePair <string, object>("FallBackMethod", input.FallBackMethod),
                new KeyValuePair <string, object>("HeartBeatUrl", input.HeartBeatUrl),
                new KeyValuePair <string, object>("HeartBeatMethod", input.HeartBeatMethod),
                new KeyValuePair <string, object>("Timeout", input.Timeout),
                new KeyValuePair <string, object>("PlayDtmf", input.PlayDtmf),
                new KeyValuePair <string, object>("HideCallerId", input.HideCallerId),
                new KeyValuePair <string, object>("Record", input.Record),
                new KeyValuePair <string, object>("RecordCallBackUrl", input.RecordCallBackUrl),
                new KeyValuePair <string, object>("RecordCallBackMethod", input.RecordCallBackMethod),
                new KeyValuePair <string, object>("Transcribe", input.Transcribe),
                new KeyValuePair <string, object>("TranscribeCallBackUrl", input.TranscribeCallBackUrl),
                new KeyValuePair <string, object>("IfMachine", (input.IfMachine.HasValue) ? Models.IfMachineEnumHelper.ToValue(input.IfMachine.Value) : null),
                new KeyValuePair <string, object>("IfMachineUrl", input.IfMachineUrl),
                new KeyValuePair <string, object>("IfMachineMethod", input.IfMachineMethod),
                new KeyValuePair <string, object>("Feedback", input.Feedback),
                new KeyValuePair <string, object>("SurveyId", input.SurveyId)
            };

            //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);
            }
        }