Difference between revisions of "HTML Web API"
From Cloud9 Payment Processing Gateway Documentation
(→Web Based Mini POS Sample) |
|||
Line 6: | Line 6: | ||
[[image:webapi.jpg|thumb|750px|HTTP API Sample Screenshot|link=http://samples.c9pg.com/html/c9pg_client_html_test.htm|Sample]]<br> | [[image:webapi.jpg|thumb|750px|HTTP API Sample Screenshot|link=http://samples.c9pg.com/html/c9pg_client_html_test.htm|Sample]]<br> | ||
==Web Based Mini POS Sample== | ==Web Based Mini POS Sample== | ||
− | *[http://samples.c9pg.com/html/c9pg_client_html_test.htm | + | *[http://samples.c9pg.com/html/c9pg_client_html_test.htm Run HTML Client with active source code display] |
==HTML Sample Source Code== | ==HTML Sample Source Code== |
Revision as of 23:08, 20 November 2018
Cloud9 Payment Gateway Documentation. This site can also be reached at http://docs.cloud9paymentgateway.com
Overview
Simple web HTTP based API for online based and web enabled point of sale integrations.
Web Based Mini POS Sample
HTML Sample Source Code
Initialization
The following points the sample to the test server:
function onStart() {
....
//let sUrl = PGC_SVC_C9PG_PDC; // production server let sUrl = PGC_SVC_C9PG_PWE_TEST; // test server }
These lines assign the test merchant account info
function onRequest(nTransType) {
.....
//Set Merchant Account Info (Merchant ID, Terminal ID, Password) PgcSetStr(nSess, 0, PGC_GWKEY_GMID, '1001396250'); PgcSetStr(nSess, 0, PGC_GWKEY_GTID, 'GT1001396253'); PgcSetStr(nSess, 0, PGC_GWKEY_GMPW, '123');
}
From the makers of Cloud9 Payment Processing Gateway and Creditline Credit Card Processing Software