Method PostMaintainValuation

Summary

Maintain Valuation

Requires

Input Parameters

NameTypeLengthDescription
function System.String 1 [Required] Function code. S=SETLL, C=CHAIN, R=READE, D=DELETE, U=UPDATE, W=WRITE
order System.String 1 [Required] order. Y=year, location. C=location, year. 1=year,location. 2=location. 3=location, year. 4=location, year, code, lmvlsq. 5=location, year, code. 6=location, year, lmvlsq, code. 7=location, year. 8=location. 9=location. Y=location, year. A=year, code, location.

  • SETLL order = Y or C.
  • CHAIN order = 1,2,3,4,5,6,7,8 or 9.
  • READE order = Y or C.
  • DELETE order = 2,5, or Y.
  • UPDATE order = A or 1.
  • WRITE order = A.

locationID numeric 9 [Required] Location ID
valuationCode System.String 4 [Required] Valuation code. This indicates who did the assessment
valuationYear numeric 2 Year valuation was done. 2 digit year. Defaults to current year
century numeric 1 Century indicator. Defaults to 1=Current century.
currentValuation dollar 2 Current value of location
adjustedValuation dollar 2 Adjusted value of location
marketUseValue System.String 1 Market or Use Value indicator. M=Market, U=User
displayPriority numeric 3 Display priority
includeExclude numeric 1 Include in total. 1=Yes, 0=No
relPartyCode System.String 1 Related Party included. Blank=Use Location ID, Y=Use Related party number
relPartyNumber numeric 9 Related Party number
sourceRef System.String 9 Source Reference. Updates TX history TX141AP/TXVHSD field
changeDate numeric 7 Change date. Format: CyyMMdd. Defaults to current date

Example

POST http://localhost/FusionServices/v3/Naviline/Land/MaintainValuation

Sample Responses

Sample Code

using System.Net;
using Newtonsoft.Json.Linq;

public void MethodName(parms)
{
   string uri = "http://localhost/FusionServices/v3/Naviline/Land/MaintainValuation";
   System.Collections.Specialized.NameValueCollection postParms = 
     new System.Collections.Specialized.NameValueCollection(); 
   // Set paramater values
   postParms.Add("function",System.Web.HttpUtility.UrlEncode("C"));
   postParms.Add("order",System.Web.HttpUtility.UrlEncode("5"));
   postParms.Add("locationID",System.Web.HttpUtility.UrlEncode("39800"));
   postParms.Add("valuationCode",System.Web.HttpUtility.UrlEncode("CNTY"));
   postParms.Add("valuationYear",System.Web.HttpUtility.UrlEncode("15"));
   postParms.Add("century",System.Web.HttpUtility.UrlEncode("1"));

   WebClient req = new WebClient();
   wc.Headers.Add("Content-Type", "application/x-www-form-urlencoded");
   wc.Headers.Set("X-APPID", "YOURID");
   wc.Headers.Set("X-APPKEY", "YOURKEY");

   byte[] responseBytes = wc.UploadValues(new Uri(uri), "POST", postParms);
   string stringResult = Encoding.UTF8.GetString(responseBytes); 
   JObject response = JObject.Parse(stringResult);
   string error = response["OutputParms"]["ErrorCode"].ToString();
   if (error == "0000")
   {
         // TODO - YOUR CODE HERE
   }
}

C# Razor MVC Sample Code

using System;
using System.Linq;
using System.Web;
using System.ComponentModel.DataAnnotations;
using System.Collections.Specialized;
using FusionServiceHelper.Models;

// NOTE: Use the namespace generated when you add the class, so that it is correct.
namespace FusionRazor.Models
{
   public class PostMaintainValuation
   {
       // Add property for each input param in order to map a field to it
       [Required(ErrorMessage = "Required")]
       [RegularExpression("^(?=.{0,1}$).*", ErrorMessage = "Must be 1 characters or less. ")]
       public string function{get; set;}

       [Required(ErrorMessage = "Required")]
       [RegularExpression("^(?=.{0,1}$).*", ErrorMessage = "Must be 1 characters or less. ")]
       public string order{get; set;}

       [Required(ErrorMessage = "Required")]
       [RegularExpression("[0-9]{0,9}", ErrorMessage = "Numeric values only. Must be 9 digits or less. ")]
       public string locationID{get; set;}

       [Required(ErrorMessage = "Required")]
       [RegularExpression("^(?=.{0,4}$).*", ErrorMessage = "Must be 4 characters or less. ")]
       public string valuationCode{get; set;}

       [RegularExpression("[0-9]{0,2}", ErrorMessage = "Numeric values only. Must be 2 digits or less. ")]
       public string valuationYear{get; set;}

       [RegularExpression("[0-9]{0,1}", ErrorMessage = "Numeric values only. Must be 1 digits or less. ")]
       public string century{get; set;}

       [RegularExpression("^(?=.{0,2}$).*", ErrorMessage = "Must be 2 characters or less. ")]
       public string currentValuation{get; set;}

       [RegularExpression("^(?=.{0,2}$).*", ErrorMessage = "Must be 2 characters or less. ")]
       public string adjustedValuation{get; set;}

       [RegularExpression("^(?=.{0,1}$).*", ErrorMessage = "Must be 1 characters or less. ")]
       public string marketUseValue{get; set;}

       [RegularExpression("[0-9]{0,3}", ErrorMessage = "Numeric values only. Must be 3 digits or less. ")]
       public string displayPriority{get; set;}

       [RegularExpression("[0-9]{0,1}", ErrorMessage = "Numeric values only. Must be 1 digits or less. ")]
       public string includeExclude{get; set;}

       [RegularExpression("^(?=.{0,1}$).*", ErrorMessage = "Must be 1 characters or less. ")]
       public string relPartyCode{get; set;}

       [RegularExpression("[0-9]{0,9}", ErrorMessage = "Numeric values only. Must be 9 digits or less. ")]
       public string relPartyNumber{get; set;}

       [RegularExpression("^(?=.{0,9}$).*", ErrorMessage = "Must be 9 characters or less. ")]
       public string sourceRef{get; set;}

       [RegularExpression("[0-9]{0,7}", ErrorMessage = "Numeric values only. Must be 7 digits or less. ")]
       public string changeDate{get; set;}

       public PostMaintainValuation()
       {
           //Set any defaults here
       }
   }
}
@* NOTE: Use Add->View to add the View. *@
@* NOTE: Check the 'Create strongly-typed view checkbox, and select the PostMaintainValuation class. *@
@* NOTE: Select Edit as the Scaffold template. *@
@* NOTE: Use the @model line that is generated at the top.  Replace the rest with the lines below.
@model FusionRazor.Models.PostMaintainValuation

@{
   ViewBag.Title = "PostMaintainValuation";
}

<h2>PostMaintainValuation</h2>
@using (Html.BeginForm()) {
   @Html.AntiForgeryToken()
   @Html.ValidationSummary(true)
   <fieldset>
   <legend>PostMaintainValuation</legend>
       <div class="editor-label">
           @Html.LabelFor(model => model.function)
       </div>
       <div class="editor-field">
           @Html.EditorFor(model => model.function)
           @Html.ValidationMessageFor(model => model.function)
       </div>
       <div class="editor-label">
           @Html.LabelFor(model => model.order)
       </div>
       <div class="editor-field">
           @Html.EditorFor(model => model.order)
           @Html.ValidationMessageFor(model => model.order)
       </div>
       <div class="editor-label">
           @Html.LabelFor(model => model.locationID)
       </div>
       <div class="editor-field">
           @Html.EditorFor(model => model.locationID)
           @Html.ValidationMessageFor(model => model.locationID)
       </div>
       <div class="editor-label">
           @Html.LabelFor(model => model.valuationCode)
       </div>
       <div class="editor-field">
           @Html.EditorFor(model => model.valuationCode)
           @Html.ValidationMessageFor(model => model.valuationCode)
       </div>
       <div class="editor-label">
           @Html.LabelFor(model => model.valuationYear)
       </div>
       <div class="editor-field">
           @Html.EditorFor(model => model.valuationYear)
           @Html.ValidationMessageFor(model => model.valuationYear)
       </div>
       <div class="editor-label">
           @Html.LabelFor(model => model.century)
       </div>
       <div class="editor-field">
           @Html.EditorFor(model => model.century)
           @Html.ValidationMessageFor(model => model.century)
       </div>
       <div class="editor-label">
           @Html.LabelFor(model => model.currentValuation)
       </div>
       <div class="editor-field">
           @Html.EditorFor(model => model.currentValuation)
           @Html.ValidationMessageFor(model => model.currentValuation)
       </div>
       <div class="editor-label">
           @Html.LabelFor(model => model.adjustedValuation)
       </div>
       <div class="editor-field">
           @Html.EditorFor(model => model.adjustedValuation)
           @Html.ValidationMessageFor(model => model.adjustedValuation)
       </div>
       <div class="editor-label">
           @Html.LabelFor(model => model.marketUseValue)
       </div>
       <div class="editor-field">
           @Html.EditorFor(model => model.marketUseValue)
           @Html.ValidationMessageFor(model => model.marketUseValue)
       </div>
       <div class="editor-label">
           @Html.LabelFor(model => model.displayPriority)
       </div>
       <div class="editor-field">
           @Html.EditorFor(model => model.displayPriority)
           @Html.ValidationMessageFor(model => model.displayPriority)
       </div>
       <div class="editor-label">
           @Html.LabelFor(model => model.includeExclude)
       </div>
       <div class="editor-field">
           @Html.EditorFor(model => model.includeExclude)
           @Html.ValidationMessageFor(model => model.includeExclude)
       </div>
       <div class="editor-label">
           @Html.LabelFor(model => model.relPartyCode)
       </div>
       <div class="editor-field">
           @Html.EditorFor(model => model.relPartyCode)
           @Html.ValidationMessageFor(model => model.relPartyCode)
       </div>
       <div class="editor-label">
           @Html.LabelFor(model => model.relPartyNumber)
       </div>
       <div class="editor-field">
           @Html.EditorFor(model => model.relPartyNumber)
           @Html.ValidationMessageFor(model => model.relPartyNumber)
       </div>
       <div class="editor-label">
           @Html.LabelFor(model => model.sourceRef)
       </div>
       <div class="editor-field">
           @Html.EditorFor(model => model.sourceRef)
           @Html.ValidationMessageFor(model => model.sourceRef)
       </div>
       <div class="editor-label">
           @Html.LabelFor(model => model.changeDate)
       </div>
       <div class="editor-field">
           @Html.EditorFor(model => model.changeDate)
           @Html.ValidationMessageFor(model => model.changeDate)
       </div>
       <p>
       <input type="submit" value="Submit"/>
       </p>
   </fieldset>

}

@section Scripts {
   @Scripts.Render("~/bundles/jqueryval")
}
using System;
using System.Collections.Specialized;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using FusionServiceHelper.Models;

// NOTE: Replace 'MyController' with the name of your controller.

// 
// GET: /MyController/PostMaintainValuation
public ActionResult PostMaintainValuation()
{
   // Create a new instance of the model to pick up any default values.
   PostMaintainValuation model =  new PostMaintainValuation();

   // pass model to set to default values
   // NOTE: Change 'MyFolderPath' to the path to the .cshtml file.
   return View("~/Views/MyFolderPath/PostMaintainValuation.cshtml", model);
}

// 
// POST: /MyController/PostMaintainValuation
[HttpPost]
public ActionResult PostMaintainValuation(FormCollection collection)
{
   string url = "v3/Naviline/Land/MaintainValuation";
   // Get the value from each input field
   NameValueCollection inputParms = new NameValueCollection();
   inputParms.Add("function", collection["function"]);
   inputParms.Add("order", collection["order"]);
   inputParms.Add("locationID", collection["locationID"]);
   inputParms.Add("valuationCode", collection["valuationCode"]);
   inputParms.Add("valuationYear", collection["valuationYear"]);
   inputParms.Add("century", collection["century"]);
   inputParms.Add("currentValuation", collection["currentValuation"]);
   inputParms.Add("adjustedValuation", collection["adjustedValuation"]);
   inputParms.Add("marketUseValue", collection["marketUseValue"]);
   inputParms.Add("displayPriority", collection["displayPriority"]);
   inputParms.Add("includeExclude", collection["includeExclude"]);
   inputParms.Add("relPartyCode", collection["relPartyCode"]);
   inputParms.Add("relPartyNumber", collection["relPartyNumber"]);
   inputParms.Add("sourceRef", collection["sourceRef"]);
   inputParms.Add("changeDate", collection["changeDate"]);

   try
   {
       // Send the request
       FusionServiceRequest request = new FusionServiceRequest();
       FusionServiceResult result = request.Post(url, inputParms);

       return View("Result", result);
   }
   catch(Exception e)
   {
       HandleErrorInfo info = new HandleErrorInfo(e, "MyController", "PostMaintainValuation");
       return View("Error", info);
   }
}