PostCustLocSvcInfo
Name | Type | Length | Description |
---|---|---|---|
customerId | char | 9 | [Required] 9 digit customer ID |
locationId | char | 9 | [Required] 9 digit Location ID |
serviceCode | char | 2 | [Required] 2 digit service code |
POST http://localhost/FusionServices/v3/Naviline/Utilities/CustLocSvcInfo
Name | Description |
---|---|
CustomerID | 000000101 |
CustomerName | ROQUEMORE ANTIQUES, INC |
CustomerNameType | C |
CustomerStatus | A |
CustomerAreaCode | 016 |
CustomerPhone | 0550212 |
CustomerAddr2 | 454 Brookwood st |
CustomerAddr3 | |
CustomerZip | 32746 |
LocationID | 000000120 |
ServiceAddress | 726 S OHIO ST |
CustomerLocationStatus | F |
ServiceCode | SA |
MeterNumber | |
ServiceSequenceNumber | 000 |
MeterRemarks | |
MeterLocation | |
LocationDescription | |
ErrorCode | 0000=Success |
ErrorMessage | Description of error if any |
using System.Net;
using Newtonsoft.Json.Linq;
public void MethodName(parms)
{
string uri = "http://localhost/FusionServices/v3/Naviline/Utilities/CustLocSvcInfo";
System.Collections.Specialized.NameValueCollection postParms =
new System.Collections.Specialized.NameValueCollection();
// Set paramater values
postParms.Add("customerId",System.Web.HttpUtility.UrlEncode("000000101"));
postParms.Add("locationId",System.Web.HttpUtility.UrlEncode("000000120"));
postParms.Add("serviceCode",System.Web.HttpUtility.UrlEncode(""));
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 CustomerID = row["CustomerID"].ToString();
string CustomerName = row["CustomerName"].ToString();
string CustomerNameType = row["CustomerNameType"].ToString();
string CustomerStatus = row["CustomerStatus"].ToString();
string CustomerAreaCode = row["CustomerAreaCode"].ToString();
string CustomerPhone = row["CustomerPhone"].ToString();
string CustomerAddr2 = row["CustomerAddr2"].ToString();
string CustomerAddr3 = row["CustomerAddr3"].ToString();
string CustomerZip = row["CustomerZip"].ToString();
string LocationID = row["LocationID"].ToString();
string ServiceAddress = row["ServiceAddress"].ToString();
string CustomerLocationStatus = row["CustomerLocationStatus"].ToString();
string ServiceCode = row["ServiceCode"].ToString();
string MeterNumber = row["MeterNumber"].ToString();
string ServiceSequenceNumber = row["ServiceSequenceNumber"].ToString();
string MeterRemarks = row["MeterRemarks"].ToString();
string MeterLocation = row["MeterLocation"].ToString();
string LocationDescription = row["LMCDDS"].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 PostCustLocSvcInfo
{
// Add property for each input param in order to map a field to it
[Required(ErrorMessage = "Required")]
[RegularExpression("^(?=.{0,9}$).*", ErrorMessage = "Must be 9 characters or less. ")]
public string customerId{get; set;}
[Required(ErrorMessage = "Required")]
[RegularExpression("^(?=.{0,9}$).*", ErrorMessage = "Must be 9 characters or less. ")]
public string locationId{get; set;}
[Required(ErrorMessage = "Required")]
[RegularExpression("^(?=.{0,2}$).*", ErrorMessage = "Must be 2 characters or less. ")]
public string serviceCode{get; set;}
public PostCustLocSvcInfo()
{
//Set any defaults here
}
}
}
@* NOTE: Use Add->View to add the View. *@
@* NOTE: Check the 'Create strongly-typed view checkbox, and select the PostCustLocSvcInfo 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.PostCustLocSvcInfo
@{
ViewBag.Title = "PostCustLocSvcInfo";
}
<h2>PostCustLocSvcInfo</h2>
@using (Html.BeginForm()) {
@Html.AntiForgeryToken()
@Html.ValidationSummary(true)
<fieldset>
<legend>PostCustLocSvcInfo</legend>
<div class="editor-label">
@Html.LabelFor(model => model.customerId)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.customerId)
@Html.ValidationMessageFor(model => model.customerId)
</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.serviceCode)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.serviceCode)
@Html.ValidationMessageFor(model => model.serviceCode)
</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/PostCustLocSvcInfo
public ActionResult PostCustLocSvcInfo()
{
// Create a new instance of the model to pick up any default values.
PostCustLocSvcInfo model = new PostCustLocSvcInfo();
// pass model to set to default values
// NOTE: Change 'MyFolderPath' to the path to the .cshtml file.
return View("~/Views/MyFolderPath/PostCustLocSvcInfo.cshtml", model);
}
//
// POST: /MyController/PostCustLocSvcInfo
[HttpPost]
public ActionResult PostCustLocSvcInfo(FormCollection collection)
{
string url = "v3/Naviline/Utilities/CustLocSvcInfo";
// Get the value from each input field
NameValueCollection inputParms = new NameValueCollection();
inputParms.Add("customerId", collection["customerId"]);
inputParms.Add("locationId", collection["locationId"]);
inputParms.Add("serviceCode", collection["serviceCode"]);
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", "PostCustLocSvcInfo");
return View("Error", info);
}
}