top of page
Enterprise Grade API
Connecting all aspects of your business is always a challenge. With the help of APIs, automating your front and backend operations is now easier than ever. APIs allow the different pieces of your business to communicate with each other in real time. A great example would be having your point-of-sale solution synchronizing sales and inventory volumes with your accounting software, or uploading all newly gathered email address to the marketing service like MailChimp. Need help? Drop us a line!
opi.jpg
LIVEPOS API METHOD SPECIFICATION
C# CODE EXAMPLE
string webAddr = “XYZ”;
string result = “”;
string json = “”;
using (WebClient client = new WebClient())
{
client.Headers[HttpRequestHeader.ContentType] = “application/json”;
client.Headers.Add(“APIApplicationID”, “myAppID”);
client.Headers.Add(“APIApplicationKey”, “myAppKey”);
json = “{ “;
json += “\”strAdminUserName\”: \”myUserName\”, “;
json += “\”strAdminPassword\”: \”myPassword\”, “;
json += “\”strAdminSecurityCode\”: \”mySecCode\””;
json += ” }”;
** XYZ will be provided to you once we approve your API application
bottom of page