ContributionsMost RecentMost LikesSolutionsRe: Dynamically Set client credentials Hi There, I was looking for the exact same answer as the question listed above. Thanks a lot for the reply, it gave me direction to look further. I was able to create a GroovyScript and parametrize the Auth Entry. """" import com.eviware.soapui.impl.rest.actions.oauth.OltuOAuth2ClientFacade import com.eviware.soapui.support.editor.inspectors.auth.TokenType def project = context.getTestCase().getTestSuite().getProject(); def oAuthProfile = project.getAuthRepository().getEntry("Name"); oAuthProfile.setClientID("client id") oAuthProfile.setClientSecret("client secret") oAuthProfile.setScope("scope") oAuthProfile.setAuthorizationURI("authorization URL" ) oAuthProfile.setAccessTokenURI("AccessToken URL" ) oAuthProfile.setRedirectURI("Redirect URL" ) oAuthProfile.setAutomationJavaScripts(["AutomationPage1", "AutomationPage2"]) //Run the Entry def oAuthClientFacade = new OltuOAuth2ClientFacade(TokenType.ACCESS); oAuthClientFacade.requestAccessToken(oAuthProfile, true); """" Best of luck!