I am trying to auth in swagger using Apiserver/imx/login with the body:
{
"Module": "DialogUser",
"UserName": "[username]",
"password": "[Password]"
}
But i get error 500:
The authentication data is incomplete.
Number: 57002043
I am trying to auth in swagger using Apiserver/imx/login with the body:
{
"Module": "DialogUser",
"UserName": "[username]",
"password": "[Password]"
}
But i get error 500:
The authentication data is incomplete.
Number: 57002043
The name of the login parameters is wrong and they are case-sensitive. The following worked for me.{
"Module": "DialogUser",
"User": "[username]",
"Password": "[password]"
}
You can lookup the parameters here. https://support.oneidentity.com/technical-documents/identity-manager/9.2.1/authorization-and-authentication-guide/26#TOPIC-2203739