Method GetProjectConditions

Summary

Get Project Conditions

Remarks

Only returns conditions in the adopted status

Input Parameters

NameTypeLengthDescription
projectNumber numeric 8 [Required] Project Number
projectYear numeric 2 [Required] Two digit Application Year - if a 4 digit year is provided, only the last two digits are used
order numeric 1 [Required] Sort order. 1=Name, 2=NameType, 3=Address, 4=ZipCode
rows numeric 4 [Required] Number of rows to return. Used for paging of records
pageNumber numeric 5 [Required] page number used for paging of records

Example

GET http://localhost/FusionServices/v3/Naviline/PlanningEngineering/ProjectConditions/{projectNumber}/{projectYear}/{order}/{rows}/{pageNumber}

Return Values

NameDescription
ErrorCode 0000=Success
ErrorMessage Error message describing any error that occurred
Description Description of condition
Status Status
Agency Agency
NotifyBP Notify Building Permits
DocLink Location of document on NaviLine server
ROWS Number of rows to return
MOREYN More rows to return? Y/N

Sample Responses

Sample Code

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

public void MethodName(parms)
{
    string uri = "http://localhost/FusionServices/v3/Naviline/PlanningEngineering/ProjectConditions/30000001/16/1/10/1";
    WebClient wc = new WebClient();
    wc.Headers.Set("X-APPID", "YOURID");
    wc.Headers.Set("X-APPKEY", "YOURKEY");
    string stringResult = wc.DownloadString(new Uri(uri));
    
    JObject response = JObject.Parse(stringResult);
    string error = response["OutputParms"]["ErrorCode"].ToString();
    if (error == "0000")
    {
        JArray jRows = (JArray)response["Rows"];
        foreach (JObject row in jRows)
        {
             string Description = row["Description"].ToString();
             string Status = row["Status"].ToString();
             string Agency = row["Agency"].ToString();
             string NotifyBP = row["NotifyBP"].ToString();
             string DocLink = row["DocLink"].ToString();
             // TODO - YOUR CODE HERE
        }
    }
}

$.get('http://localhost/FusionServices/v3/Naviline/PlanningEngineering/ProjectConditions/30000001/16/1/10/1', function(response) {
    $('#resultDiv).html(response); 
 });

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 GetProjectConditions
   {
       // Add property for each input param in order to map a field to it
       [Required(ErrorMessage = "Required")]
       [RegularExpression("[0-9]{0,8}", ErrorMessage = "Numeric values only. Must be 8 digits or less. ")]
       public string projectNumber{get; set;}

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

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

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

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

       public GetProjectConditions()
       {
           //Set any defaults here
           projectNumber = DefaultData.Get("projectNumber");
           projectYear = DefaultData.Get("projectYear");
           order = DefaultData.Get("order");
           rows = DefaultData.Get("rows");
           pageNumber = DefaultData.Get("pageNumber");
       }
   }
}
@* NOTE: Use Add->View to add the View. *@
@* NOTE: Check the 'Create strongly-typed view checkbox, and select the GetProjectConditions 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.GetProjectConditions

@{
   ViewBag.Title = "GetProjectConditions";
   string myUrl = "http://localhost/FusionServices/v3/Naviline/PlanningEngineering/ProjectConditions/" + Model.projectNumber + "/" + Model.projectYear + "/" + Model.order + "/" + Model.rows + "/" + Model.pageNumber;
}

<h2>GetProjectConditions</h2>
@using (Html.BeginForm()) {
   @Html.AntiForgeryToken()
   @Html.ValidationSummary(true)
   <fieldset>
   <legend>GetProjectConditions</legend>
       <div class="editor-label">Use the fields below to change the values and resubmit.</div>
       <div class="editor-label">
           @Html.LabelFor(model => model.projectNumber)
       </div>
       <div class="editor-field">
           @Html.EditorFor(model => model.projectNumber)
           @Html.ValidationMessageFor(model => model.projectNumber)
       </div>
       <div class="editor-label">
           @Html.LabelFor(model => model.projectYear)
       </div>
       <div class="editor-field">
           @Html.EditorFor(model => model.projectYear)
           @Html.ValidationMessageFor(model => model.projectYear)
       </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.rows)
       </div>
       <div class="editor-field">
           @Html.EditorFor(model => model.rows)
           @Html.ValidationMessageFor(model => model.rows)
       </div>
       <div class="editor-label">
           @Html.LabelFor(model => model.pageNumber)
       </div>
       <div class="editor-field">
           @Html.EditorFor(model => model.pageNumber)
           @Html.ValidationMessageFor(model => model.pageNumber)
       </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/GetProjectConditions
public ActionResult GetProjectConditions()
{
   // Create a new instance of the model to pick up any default values.
   GetProjectConditions model =  new GetProjectConditions();

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

// 
// POST: /MyController/GetProjectConditions
[HttpPost]
public ActionResult GetProjectConditions(FormCollection collection)
{
   string url = "v3/Naviline/PlanningEngineering/ProjectConditions/{projectNumber}/{projectYear}/{order}/{rows}/{pageNumber}";
   // Get the value from each input field
   NameValueCollection inputParms = new NameValueCollection();
   inputParms.Add("projectNumber", collection["projectNumber"]);
   inputParms.Add("projectYear", collection["projectYear"]);
   inputParms.Add("order", collection["order"]);
   inputParms.Add("rows", collection["rows"]);
   inputParms.Add("pageNumber", collection["pageNumber"]);

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

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