Not able to provide organization during user slogin

Hi,

So I want the user to be able to join an organization by id upon login, what I am doing now is

String authorizeUrl = authenticationController.buildAuthorizeUrl(request, response, redirectUri)
.withScope(“openid profile email offline_access”)
.withOrganization(“xxxxxxx”)
.build();

but when I tried to login using the universal login page I got

com.auth0.InvalidRequestException: parameter organization is not allowed for this client

Am I missing some setup here?