Method PostValidateReceivableAccount

Summary

Validate Receivable Account

Remarks

Returns name and address of user if valid.

Input Parameters

NameTypeLengthDescription
userNumber numeric 9 [Required] Master ID - first part of the account number
customerID numeric 9 [Required] Cust ID - second part of the account

Example

POST http://localhost/FusionServices/v2/Naviline/MiscReceivables/ValidateReceivableAccount

Return Values

NameDescription
ErrorCode 0000 if successful
ErrorMessage details of any error that occurred
MNUM Master ID
CSID Cust ID
NAME Name of customer on the account
ADDRESS1 Address line 1
ADDRESS2 Address line 2
ZIPCODE Zip code
CTYPE Customer type code

Sample Responses

Sample Code

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

public void MethodName(parms)
{
   string uri = "http://localhost/FusionServices/v2/Naviline/MiscReceivables/ValidateReceivableAccount";
   System.Collections.Specialized.NameValueCollection postParms = 
     new System.Collections.Specialized.NameValueCollection(); 
   // Set paramater values
   postParms.Add("customerID",System.Web.HttpUtility.UrlEncode("000000001"));
   postParms.Add("userNumber",System.Web.HttpUtility.UrlEncode("000000001"));

   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")
   {
         // TODO - YOUR CODE HERE
   }
}

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 PostValidateReceivableAccount
   {
       // 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 userNumber{get; set;}

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

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

@{
   ViewBag.Title = "PostValidateReceivableAccount";
}

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

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

// 
// POST: /MyController/PostValidateReceivableAccount
[HttpPost]
public ActionResult PostValidateReceivableAccount(FormCollection collection)
{
   string url = "v2/Naviline/MiscReceivables/ValidateReceivableAccount";
   // Get the value from each input field
   NameValueCollection inputParms = new NameValueCollection();
   inputParms.Add("userNumber", collection["userNumber"]);
   inputParms.Add("customerID", collection["customerID"]);

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