Hi all,
I'm trying to access my IM through web API:
if I get appserver/authmodules
it returns
Id | Caption | Password Based | Is Default |
---|---|---|---|
RoleBasedManualADS | Active Directory user account (manual input/role based) | false | false |
RoleBasedADSAccount | Active Directory user account (role based) | false | false |
DialogUser | System user | false | true |
RoleBasedPerson | Employee (role based) | false | false |
ADSAccount | Active Directory user account | false | false |
DynamicPerson | Employee (dynamic) | false | false |
I'm trying to use the DialogUser method
in the follow way:
calling auth/apphost
with in the body the following json as decribed in the documentation:
{"authString":"Module=DialogUser;User=*SystemUsername*;Password=*SystemUserPassword*"}
but I get a 401 - Unauthorized: Access is denied due to invalid credentials
but the user is an admin user and has all the privileges.
Should I enabled the user to something?
Thanks Mik