SOAP API

The API reference for the SOAP API

Our SOAP API is continuously maintained and can be used as an alternative to the REST API and our other integration options. You can access everything via the CardProcAPI service.

We recommend following our SOAP integration guide and using svcutil to start using the SOAP API. This way you will have ready-made CardProcessClient class to help you use the service.

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();
    }
}

The base URL of the SOAP service is https://easypay5.com/APIcardProcR119/CardProcAPI.svc

Last updated

Was this helpful?