• About API authorization

    Hello everyone. Another application needs to use our API. We need to define a user for this. But we want to restrict this user. We want them to only read the fields we specify from the table. We don't want them to perform operations like insert, delete…

  • API: Problems with Search

    When calling portal/shop/serviceitems?..&search=, from time to time an error occurs that we cannot reproduce/explain

    You do not have permissions for this action. You must log in.
    Sie haben keine Berechtigung für diese Aktion. Melden Sie sich an.…

  • 401 Unauthorized response through API

    Hi everyone,

    This is my Powershell script to login:


    $url='http://[AppServerIP]/AppServer/auth/apphost'

    $bi=@{
    "authString"="Module=DialogUser;User=***;Password=***"

    }
    $authJson = ConvertTo-Json $bi -Depth 2

    $LoginRequest2 = Invoke…