Esempio n. 1
0
        /// <summary>
        /// ثبت خسارت بیمه
        /// </summary>
        /// <param name="body">Required parameter: اطلاعات خسارت</param>
        /// <param name="xApiKey">Required parameter: کلید اختصاصی ارتباط با سرور</param>
        /// <param name="contentType">Required parameter: Example: </param>
        /// <return>Returns the Models.TrackingDamage response from the API call</return>
        public Models.TrackingDamage CreateTrackingDamage(Models.TrackingDamageRequest body, string xApiKey, string contentType)
        {
            Task <Models.TrackingDamage> t = CreateTrackingDamageAsync(body, xApiKey, contentType);

            APIHelper.RunTaskSynchronously(t);
            return(t.Result);
        }
Esempio n. 2
0
        /// <summary>
        /// ثبت خسارت بیمه
        /// </summary>
        /// <param name="body">Required parameter: اطلاعات خسارت</param>
        /// <param name="xApiKey">Required parameter: کلید اختصاصی ارتباط با سرور</param>
        /// <param name="contentType">Required parameter: Example: </param>
        /// <return>Returns the Models.TrackingDamage response from the API call</return>
        public async Task <Models.TrackingDamage> CreateTrackingDamageAsync(Models.TrackingDamageRequest body, string xApiKey, string contentType)
        {
            //the base uri for api requests
            string _baseUri = Configuration.GetBaseURI();

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

            _queryBuilder.Append("/TrackingDamage");


            //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" },
                { "accept", "application/json" },
                { "x-api-key", xApiKey },
                { "Content-Type", contentType }
            };

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

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

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