Difference between revisions of "Payment Processing API Documentation"

From Cloud9 Payment Processing Gateway Documentation
Jump to: navigation, search
(API Documentation)
 
(58 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
{{Template:C9Header|API Documentation}}
 
{{Template:C9Header|API Documentation}}
=Step One=
+
<br>
Please, review the '''[[Payment_Processing_Developer_Guide|Developer Guide]]''' to determine the best integration approach, before diving into the API Documentation below.
+
&rarr; '''ALL API is COPYRIGHT by 911 Software, INC 2019'''
 +
<br>
  
=API Documentation=
+
=RESTful JSON & HTML API Documenation=
 
+
See [[JSON API Documentation]]
==Connection==
+
=Web Browser HTML/JavaScript Integration=
<code>
+
See [[HTML_Web_API|Web Browser Integration Samples]]
// Initializing library;
+
=C/C++/C# & VB API documentation=
// called once per application upon startup
+
See [[C Languages API Documentation]]
PgcInit("PgcSample");
+
=iOS API Documentation=
 
+
See [[iOS API Documentation]]
// Connection handle;
+
=Android API Documentation=
// one per connection to the remote server
+
See [[Android API Documentation]]
int nConn = 0;
 
 
 
// Creating connection to the remote server;
 
// called once per connection
 
nConn = PgcNewConn(PGC_SVC_C9PG_PWE_TEST, "Name", "Token", PGC_TIMEO_TXN, "PgcSample", "");
 
if (nConn < PGC_ERR_NONE_MARKER) {
 
    // Handing errors
 
    // nConn contains the error code
 
    // stop
 
}
 
 
 
// Connecting to the remote server;
 
// optional; will be called automatically if not connected
 
int nErr = PgcConnect(nConn);
 
if (nErr < PGC_ERR_NONE_MARKER)
 
{
 
    char sErr[256]; // Error tag; a more descriptive representation of the error code
 
    PgcGetErrTag(nErr, sErr); // Getting error tag
 
}
 
 
 
</code>
 
&rarr; '''Online Documentation:''' [http://cloud9paymentgateway.com/docs/API/Index.html Payment Gateway Client Library 0.1 documentation]
 
 
 
=Samples=
 
{{Template:samples}}
 
  
 
{{Template:C9Footer|Integration}}
 
{{Template:C9Footer|Integration}}

Latest revision as of 19:23, 6 August 2019




Cloud9 Payment Gateway Documentation. This site can also be reached at http://docs.cloud9paymentgateway.com


ALL API is COPYRIGHT by 911 Software, INC 2019

RESTful JSON & HTML API Documenation

See JSON API Documentation

Web Browser HTML/JavaScript Integration

See Web Browser Integration Samples

C/C++/C# & VB API documentation

See C Languages API Documentation

iOS API Documentation

See iOS API Documentation

Android API Documentation

See Android API Documentation





From the makers of Cloud9 Payment Processing Gateway and Creditline Credit Card Processing Software