/// <summary> /// Resends an order /// </summary> /// <param name="Models.CreateResendOrderInput">Object containing request parameters</param> /// <return>Returns the Models.ResendOrderResponseModel response from the API call</return> public Models.ResendOrderResponseModel CreateResendOrder(Models.CreateResendOrderInput input) { Task <Models.ResendOrderResponseModel> t = CreateResendOrderAsync(input); APIHelper.RunTaskSynchronously(t); return(t.Result); }
/// <summary> /// Resends an order /// </summary> /// <param name="Models.CreateResendOrderInput">Object containing request parameters</param> /// <return>Returns the Models.ResendOrderResponseModel response from the API call</return> public async Task <Models.ResendOrderResponseModel> CreateResendOrderAsync(Models.CreateResendOrderInput input) { //validating required parameters if (null == input.ReferenceOrderID) { throw new ArgumentNullException("referenceOrderID", "The property \"ReferenceOrderID\" in the input object 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("/orders/{referenceOrderID}/resends"); //process optional template parameters APIHelper.AppendUrlWithTemplateParameters(_queryBuilder, new Dictionary <string, object>() { { "referenceOrderID", input.ReferenceOrderID } }); //validate and preprocess url string _queryUrl = APIHelper.CleanUrl(_queryBuilder); //append request with appropriate headers and parameters var _headers = new Dictionary <string, string>() { { "user-agent", "V2NGSDK" }, { "accept", "application/json" }, { "content-type", "application/json; charset=utf-8" } }; //append body params var _body = APIHelper.JsonSerialize(input.OrderResendCriteria); //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); //Error handling using HTTP status codes if ((_response.StatusCode < 200) || (_response.StatusCode > 208)) //[200,208] = HTTP OK { throw new RaasGenericException(@"API Error", _context); } //handle errors defined at the API level base.ValidateResponse(_response, _context); try { return(APIHelper.JsonDeserialize <Models.ResendOrderResponseModel>(_response.Body)); } catch (Exception _ex) { throw new APIException("Failed to parse the response: " + _ex.Message, _context); } }