Bill Details
Name | Type | Length | Description |
---|---|---|---|
taxID | numeric | 9 | [Required] Tax Account ID |
taxYear | numeric | 4 | [Required] Tax Year |
rollCodes | System.String | 2 | [Required] Roll Code |
period | numeric | 1 | Period |
rows | numeric | 4 | Number of rows to return. Used for paging |
pageNumber | numeric | 5 | Page Number. Used for paging |
POST http://localhost/FusionServices/v3/Naviline/Tax/BillDetails
Name | Description |
---|---|
TaxDescription | Tax Description |
TaxableValue | Taxable Value |
TaxAmount | Taxable Amount |
PageNumber | Page Number returned |
Rows | Number of rows returned |
BillingName | Name of person or company |
BillingAddress1 | Billing address line 1 |
BillingAddress2 | Billing address line 2 |
BillingCIty | Billing address City |
BillingState | Billing address State |
BillingZip | Billing address zip |
DelinquentDate | Delinquent Date. Format=MMddyy |
Receipt | Receipt Amount |
OriginalTax | Original Tax Amount |
TotalTax | Total Tax Amount |
More?YN | More rows available? Y/N |
ErrorCode | 0000=Success |
ErrorMessage | Message returned on error |
using System.Net;
using Newtonsoft.Json.Linq;
public void MethodName(parms)
{
string uri = "http://localhost/FusionServices/v3/Naviline/Tax/BillDetails";
System.Collections.Specialized.NameValueCollection postParms =
new System.Collections.Specialized.NameValueCollection();
// Set paramater values
postParms.Add("taxID",System.Web.HttpUtility.UrlEncode("290359"));
postParms.Add("taxYear",System.Web.HttpUtility.UrlEncode("2015"));
postParms.Add("rollCodes",System.Web.HttpUtility.UrlEncode("RE"));
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")
{
JArray jRows = (JArray)response["Rows"];
foreach (JObject row in jRows)
{
string TaxDescription = row["TaxDescription"].ToString();
string TaxableValue = row["TaxableValue"].ToString();
string TaxAmount = row["TaxAmount"].ToString();
// TODO - YOUR CODE HERE
}
}
}
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 PostBillDetails
{
// Add property for each input param in order to map a field to it
[Required(ErrorMessage = "Required")]
[RegularExpression("[0-9]{0,9}", ErrorMessage = "Numeric values only. Must be 9 digits or less. ")]
public string taxID{get; set;}
[Required(ErrorMessage = "Required")]
[RegularExpression("[0-9]{0,4}", ErrorMessage = "Numeric values only. Must be 4 digits or less. ")]
public string taxYear{get; set;}
[Required(ErrorMessage = "Required")]
[RegularExpression("^(?=.{0,2}$).*", ErrorMessage = "Must be 2 characters or less. ")]
public string rollCodes{get; set;}
[RegularExpression("[0-9]{0,1}", ErrorMessage = "Numeric values only. Must be 1 digits or less. ")]
public string period{get; set;}
[RegularExpression("[0-9]{0,4}", ErrorMessage = "Numeric values only. Must be 4 digits or less. ")]
public string rows{get; set;}
[RegularExpression("[0-9]{0,5}", ErrorMessage = "Numeric values only. Must be 5 digits or less. ")]
public string pageNumber{get; set;}
public PostBillDetails()
{
//Set any defaults here
}
}
}
@* NOTE: Use Add->View to add the View. *@
@* NOTE: Check the 'Create strongly-typed view checkbox, and select the PostBillDetails 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.PostBillDetails
@{
ViewBag.Title = "PostBillDetails";
}
<h2>PostBillDetails</h2>
@using (Html.BeginForm()) {
@Html.AntiForgeryToken()
@Html.ValidationSummary(true)
<fieldset>
<legend>PostBillDetails</legend>
<div class="editor-label">
@Html.LabelFor(model => model.taxID)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.taxID)
@Html.ValidationMessageFor(model => model.taxID)
</div>
<div class="editor-label">
@Html.LabelFor(model => model.taxYear)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.taxYear)
@Html.ValidationMessageFor(model => model.taxYear)
</div>
<div class="editor-label">
@Html.LabelFor(model => model.rollCodes)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.rollCodes)
@Html.ValidationMessageFor(model => model.rollCodes)
</div>
<div class="editor-label">
@Html.LabelFor(model => model.period)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.period)
@Html.ValidationMessageFor(model => model.period)
</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/PostBillDetails
public ActionResult PostBillDetails()
{
// Create a new instance of the model to pick up any default values.
PostBillDetails model = new PostBillDetails();
// pass model to set to default values
// NOTE: Change 'MyFolderPath' to the path to the .cshtml file.
return View("~/Views/MyFolderPath/PostBillDetails.cshtml", model);
}
//
// POST: /MyController/PostBillDetails
[HttpPost]
public ActionResult PostBillDetails(FormCollection collection)
{
string url = "v3/Naviline/Tax/BillDetails";
// Get the value from each input field
NameValueCollection inputParms = new NameValueCollection();
inputParms.Add("taxID", collection["taxID"]);
inputParms.Add("taxYear", collection["taxYear"]);
inputParms.Add("rollCodes", collection["rollCodes"]);
inputParms.Add("period", collection["period"]);
inputParms.Add("rows", collection["rows"]);
inputParms.Add("pageNumber", collection["pageNumber"]);
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", "PostBillDetails");
return View("Error", info);
}
}