I have an integration system with Appian and Microsoft Azure, however the client wants to have a default account to view the page with the records. My question is is it possible to access Appian without the need of Authorization? do you need to log in at all times to access Records, Sites or Interfaces
Discussion posts and replies are publicly visible
You have to authenticate to Appian to have access. This is part of secure-by-design.
What is your use case? What do you want to display to that anonymous user?
Stefan is correct - you must authenticate to access Appian. The only other alternative is to use a service account with a Web API. This allows you to expose information to an integration that makes a request to Appian, and it allows authenticating using an API key that is associated with that service account.
can you please provide Documentation for the service account?
Just to make this clear. A service account can only be used to call web APIs. NOT to log in to UI.
docs.appian.com/.../Web_API_Authentication.html
so it CAN"T be used as a default account for non Appian users?
Exactly. To expose data to the outside anonymous world, we typically create a web portal using any web technology the client prefers and call APIs created in Appian to deliver the data.
so I am guessing I can not put DB records on this API
Why not? This is one of the ready made templates when you create a new web API.
Appian assigns No Access by default to all other users.Object security is an integral part of application development in Appian, and we should configure the right users and developers have the appropriate permissions within an application and the application itself.
If you want to perform the following activities, then go for Web API. This approach will make your calls easier using key based authentication without having to login manually.
A list of tasks for a specified userA list of records for a specific record typeData about a specific record, similar to a record dashboardAn Appian documentThe ability to write to a data storeThe ability to start a new instance of a process model
For configuring the authentication, follow the instructions mentioned in the link https://docs.appian.com/suite/help/21.1/Web_API_Authentication.html