Delete Related Party
Name | Type | Length | Description |
---|---|---|---|
locationID | numeric | 9 | [Required] Location ID |
rpTypeCode | System.String | 2 | [Required] Related Party Type Code. P=Parcel Related Party |
POST http://localhost/FusionServices/v3/Naviline/Land/DeleteRelatedParty
Name | Description |
---|---|
ErrorCode | 0=Success |
LastChangedDate | Last changed date. Format=CyyMMdd |
LastChangedJob | Last changed job |
LastChangedUser | Last changed user |
RelatedPartyCode | Related Party Code |
using System.Net;
using Newtonsoft.Json.Linq;
public void MethodName(parms)
{
string uri = "http://localhost/FusionServices/v3/Naviline/Land/DeleteRelatedParty";
System.Collections.Specialized.NameValueCollection postParms =
new System.Collections.Specialized.NameValueCollection();
// Set paramater values
postParms.Add("locationID",System.Web.HttpUtility.UrlEncode("39796"));
postParms.Add("rpTypeCode",System.Web.HttpUtility.UrlEncode("P"));
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 == "0")
{
// 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 PostDeleteRelatedParty
{
// 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 locationID{get; set;}
[Required(ErrorMessage = "Required")]
[RegularExpression("^(?=.{0,2}$).*", ErrorMessage = "Must be 2 characters or less. ")]
public string rpTypeCode{get; set;}
public PostDeleteRelatedParty()
{
//Set any defaults here
}
}
}
@* NOTE: Use Add->View to add the View. *@
@* NOTE: Check the 'Create strongly-typed view checkbox, and select the PostDeleteRelatedParty 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.PostDeleteRelatedParty
@{
ViewBag.Title = "PostDeleteRelatedParty";
}
<h2>PostDeleteRelatedParty</h2>
@using (Html.BeginForm()) {
@Html.AntiForgeryToken()
@Html.ValidationSummary(true)
<fieldset>
<legend>PostDeleteRelatedParty</legend>
<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.rpTypeCode)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.rpTypeCode)
@Html.ValidationMessageFor(model => model.rpTypeCode)
</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/PostDeleteRelatedParty
public ActionResult PostDeleteRelatedParty()
{
// Create a new instance of the model to pick up any default values.
PostDeleteRelatedParty model = new PostDeleteRelatedParty();
// pass model to set to default values
// NOTE: Change 'MyFolderPath' to the path to the .cshtml file.
return View("~/Views/MyFolderPath/PostDeleteRelatedParty.cshtml", model);
}
//
// POST: /MyController/PostDeleteRelatedParty
[HttpPost]
public ActionResult PostDeleteRelatedParty(FormCollection collection)
{
string url = "v3/Naviline/Land/DeleteRelatedParty";
// Get the value from each input field
NameValueCollection inputParms = new NameValueCollection();
inputParms.Add("locationID", collection["locationID"]);
inputParms.Add("rpTypeCode", collection["rpTypeCode"]);
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", "PostDeleteRelatedParty");
return View("Error", info);
}
}