Get list of persons linked to finance AR or CR record
using System.Net;
string uri = "https://fusion.superion.com/FusionOSServices/v1/ONESolution/AccountsReceivable/PersonList";
string xmlText =
@"<GetFinanceARCRPersonList>
<Ledger>GL</Ledger>
<MaxRows>10</MaxRows>
<ARCRPersonParameter>
<Field>AccountID</Field>
<Operator>6</Operator>
<Value>PM*</Value>
</ARCRPersonParameter>
<ARCRPersonParameter>
<Field>Name</Field>
<Operator>6</Operator>
<Value>*</Value>
</ARCRPersonParameter>
</GetFinanceARCRPersonList>";
using (WebClient req = new WebClient())
{
string stringResult = wc.UploadString(new Uri(uri), "POST", xmlText);
XmlDocument response = xmlDoc.LoadXml(stringResult);
// TODO
}