Difference between revisions of "Payment Processing API Documentation"

From Cloud9 Payment Processing Gateway Documentation
Jump to: navigation, search
(API Documentation)
 
(61 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.
+
&rarrn; '''ALL API is COPYRIGHT by 911 Software, INC 2019'''
 +
<br>
  
=API Documentation=
+
=RESTful JSON & HTML API Documenation <- RECOMMENDED!=
 +
<br>
 +
See [[JSON API Documentation]]
 +
<br>
 +
<br>
  
==Connection==
+
'''NOTE: THE FOLLOWING IS DEPRECATED, ALTHOUGH MAY BE USEFUL AS SAMPLES'''
<code>
+
=Web Browser HTML/JavaScript Integration=
// Initializing library;
+
See [[HTML_Web_API|Web Browser Integration Samples]]
// called once per application upon startup
+
=C/C++/C# & VB API documentation=
PgcInit("PgcSample");
+
See [[C Languages API Documentation]]
 
+
=iOS API Documentation=
// Connection handle;
+
See [[iOS API Documentation]]
// one per connection to the remote server
+
=Android API Documentation=
int nConn = 0;
+
See [[Android API Documentation]]
 
 
// 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 23:47, 16 September 2024




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


&rarrn; ALL API is COPYRIGHT by 911 Software, INC 2019

RESTful JSON & HTML API Documenation <- RECOMMENDED!


See JSON API Documentation

NOTE: THE FOLLOWING IS DEPRECATED, ALTHOUGH MAY BE USEFUL AS SAMPLES

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