Method PostGetKeys

Type: FusionOSServices.Controllers.AccountLookupController

Summary

Lookup keys in the ledger

Example

POST https://fusion.superion.com/FusionOSServices/v1/ONESolution/AccountLookup/Keys

Sample Code

using System.Net;

string uri = "https://fusion.superion.com/FusionOSServices/v1/ONESolution/AccountLookup/Keys";
var xmlText = "<KeyLookupRequest><Ledger>GL</Ledger><IncludeNonTransactional>true</IncludeNonTransactional><MaxRows>10</MaxRows><KeyLookupParameter><Field>OrgKey</Field><Operator>6</Operator><Value>101*</Value></KeyLookupParameter></KeyLookupRequest>"
using (WebClient req = new WebClient())
{
    string stringResult = wc.UploadString(new Uri(uri), "POST", xmlText);
    XmlDocument response = xmlDoc.LoadXml(stringResult);
    // TODO
}