You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To successfully open a connection to the ContactLab SOAP API you have to provide valid credentials.
In order to avoid repeating your API key and user key in your code, you can set them in an class and include everywhere needed.
This is the pattern used in all these examples: refer to this code whenever you see the Parameters class in the examples code.
packagecom.contactlab.api.ws.examples;
publicinterfaceParameters {
StringapiKey = "YOUR API KEY";
StringuserKey = "YOUR USER KEY";
}