Method GetInspectionTypeInfo

Summary

Get Inspection Type Info

Remarks

Get Inspection Type description and IVR code for a type code.

Input Parameters

NameTypeLengthDescription
inspectionType System.String 4 [Required] Inspection Type Code. 4 char code. Ex. BL02

Example

GET http://localhost/FusionServices/v3/Naviline/Inspection/InspectionTypeInfo/{inspectionType}

Sample Responses

Sample Code

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

public void MethodName(parms)
{
    string uri = "http://localhost/FusionServices/v3/Naviline/Inspection/InspectionTypeInfo/BL02";
    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 InspTypeCode = row["InspTypeCode"].ToString();
             string InspCodeDesc = row["InspCodeDesc"].ToString();
             string InspPointValue = row["InspPointValue"].ToString();
             string InspVoicePIN = row["InspVoicePIN"].ToString();
             string InspInactive = row["InspInactive"].ToString();
             string ReinspPointValue = row["ReinspPointValue"].ToString();
             string PreissueSchedAllow = row["PreissueSchedAllow"].ToString();
             string InspAllowIVR = row["InspAllowIVR"].ToString();
             string InspAllowC2G = row["InspAllowC2G"].ToString();
             string InspEmailNotify = row["InspEmailNotify"].ToString();
             string InspEmail = row["InspEmail"].ToString();
             // TODO - YOUR CODE HERE
        }
    }
}

$.get('http://localhost/FusionServices/v3/Naviline/Inspection/InspectionTypeInfo/BL02', 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 GetInspectionTypeInfo
   {
       // Add property for each input param in order to map a field to it
       [Required(ErrorMessage = "Required")]
       [RegularExpression("^(?=.{0,4}$).*", ErrorMessage = "Must be 4 characters or less. ")]
       public string inspectionType{get; set;}

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

@{
   ViewBag.Title = "GetInspectionTypeInfo";
   string myUrl = "http://localhost/FusionServices/v3/Naviline/Inspection/InspectionTypeInfo/" + Model.inspectionType;
}

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

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

// 
// POST: /MyController/GetInspectionTypeInfo
[HttpPost]
public ActionResult GetInspectionTypeInfo(FormCollection collection)
{
   string url = "v3/Naviline/Inspection/InspectionTypeInfo/{inspectionType}";
   // Get the value from each input field
   NameValueCollection inputParms = new NameValueCollection();
   inputParms.Add("inspectionType", collection["inspectionType"]);

   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", "GetInspectionTypeInfo");
       return View("Error", info);
   }
}