Method GetLicenseDetailAddl

Summary

Get License Detail and Additional Requirements

Remarks

Gets License Details along with description of additional requirements

Input Parameters

NameTypeLengthDescription
licenseCentury System.String 1 [Required] Century indicator. 0=Prior Century, 1=Current Century
licenseYear numeric 2 [Required] License Year. 2 digit
licenseNumber numeric 8 [Required] License Number

Example

GET http://localhost/FusionServices/v2/Naviline/OccupationalLicense/LicenseDetailAddl/{licenseCentury}/{licenseYear}/{licenseNumber}

Return Values

NameDescription
ErrorCode 0000=Success
ErrorMessage Message returned with error code
AdditionalReqmtCode Additional Requirement Code
DocumentNumber Document number for additional requirement
ExpirationDate Expiration date. Format=MMddyyyy
AdditionalReqmtDesc Additional Requirement description
ControlNumber Business control number
Locationnumber Location number
Name Business name
Address Business Address
CityStateZip Business City, ST Zip line
MailingAddressLine1 Business Mail address line 1
MailingAddressLine2 Business Mail address line 2
MailingCityStateZip Business Mail City, ST Zip line
MailingDeliveryPoint Business Mail Delivery Point
MainAreaCode Area Code
MainPhoneNumber Phone number
BusinessStatusCode Business Status
BusinessStatusDesc Business Status description
OpenDate Date Opened
ContractorFlag Contractor Y/N
OwnershipCode Ownership Code
OwnershipCodeDesc Ownership Code description
FedTaxID Federal Tax ID
OwnerName Owner Name
ClassCode License Classification Code
ClassCodeDesc License Classification Description
ApplicationDate Application date. Format=MMddyyyy
IssueDate Issue date. Format=MMddyyyy
StatusCode Status Code
StatusCodeDesc Status Description
LicenseRenewYear License year for Renew
LicenseRenewNumber License Number for Renew
LicenseStatusDate License Status Date
LicenseRenewThruDate License Renew Thru Date
LicenseOpenPeriodFlag Open Period for renewal? Y/N
InternetUseFlag Allow access online

Sample Responses

Sample Code

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

public void MethodName(parms)
{
    string uri = "http://localhost/FusionServices/v2/Naviline/OccupationalLicense/LicenseDetailAddl/0/96/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 AdditionalReqmtCode = row["AdditionalReqmtCode"].ToString();
             string DocumentNumber = row["DocumentNumber"].ToString();
             string ExpirationDate = row["ExpirationDate"].ToString();
             string AdditionalReqmtDesc = row["AdditionalReqmtDesc"].ToString();
             // TODO - YOUR CODE HERE
        }
    }
}

$.get('http://localhost/FusionServices/v2/Naviline/OccupationalLicense/LicenseDetailAddl/0/96/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 GetLicenseDetailAddl
   {
       // 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 licenseCentury{get; set;}

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

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

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

@{
   ViewBag.Title = "GetLicenseDetailAddl";
   string myUrl = "http://localhost/FusionServices/v2/Naviline/OccupationalLicense/LicenseDetailAddl/" + Model.licenseCentury + "/" + Model.licenseYear + "/" + Model.licenseNumber;
}

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

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

// 
// POST: /MyController/GetLicenseDetailAddl
[HttpPost]
public ActionResult GetLicenseDetailAddl(FormCollection collection)
{
   string url = "v2/Naviline/OccupationalLicense/LicenseDetailAddl/{licenseCentury}/{licenseYear}/{licenseNumber}";
   // Get the value from each input field
   NameValueCollection inputParms = new NameValueCollection();
   inputParms.Add("licenseCentury", collection["licenseCentury"]);
   inputParms.Add("licenseYear", collection["licenseYear"]);
   inputParms.Add("licenseNumber", collection["licenseNumber"]);

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