Method C2GConsolidatedAccounts

Summary

REST service that returns information about TODO

Parameters

TypeDescription
System.Net.Http.Formatting.FormDataCollection x-www-form-urlencoded POST with the following: user=value&pin=value

Example

POST http://localhost/FusionServices/v2/NaviLine/General/C2GConsolidatedAccounts

Sample Responses

Sample Code

using System.Net;

string uri = "http://localhost/FusionServices/v2/NaviLine/General/C2GConsolidatedAccounts";
System.Collections.Specialized.NameValueCollection postParms = 
     new System.Collections.Specialized.NameValueCollection(); 

postParms.Add("user",System.Web.HttpUtility.UrlEncode(""));
postParms.Add("pin",System.Web.HttpUtility.UrlEncode(""));
using (WebClient req = new WebClient())
{
    byte[] responseBytes = wc.UploadValues(new Uri(uri), "POST", postParms);
    string stringResult = Encoding.UTF8.GetString(responseBytes); 
    // TODO
}