SOAP API
Getting started with SOAP API for Number
Generate the service for WCF applications
Generate CardProcessService using the command line
CardProcessService using the command line2
Locate the ServiceModel Metadata Utility Tool is installed
class Test
{
static void Main()
{
CardProcessClient client = new CardProcessClient();
// Use the 'client' variable to call operations on the service.
// Always close the client.
client.Close();
}
}Class Test
Shared Sub Main()
Dim client As CardProcessClient = New CardProcessClient()
' Use the 'client' variable to call operations on the service.
' Always close the client.
client.Close()
End Sub
End ClassExamples
Authenticate
Process Annual Consent
Void Transaction
Credit Transaction
Query Transaction
Consent General Query
Generate Receipt
Last updated
Was this helpful?