Changing the API Version Number in Java code while using SDK
Find the answer to your question
Advanced Search
Published: June 18 2019, 2:37:00 PMUpdated: August 29 2022, 4:54:52 PM
In order to change the request version in Java while using SDK, please use the below example code.
ApiContext has a setWSDLVersion method which can be used to set API Version to a different version than the one SDK Provides.
ApiContext apiContext = new ApiContext();
apiContext.setWSDLVersion("1235");
How well did this answer your question?
Answers others found helpful