Skip to main content
sanjuktab2257
July 10, 2025
Question

Dynamic way to build individual endpoints for each users within Appian

  • July 10, 2025
  • 2 replies
  • 0 views

What is the approach if we want individual endpoints for each of the Users in Appian-->Admin-->Users

2 replies

stefanhelzle0001
July 10, 2025

What kind of "endpoints" are you looking for? Can you elaborate on your use case?

shubhama926776
July 10, 2025

Use a single dynamic endpoint (e.g. /users/{username}) to fetch any user's data instead of creating separate endpoints.
The API extracts the username from the URL, queries user functions and returns JSON.
This approach is scalable, secure, and low-maintenance -> no updates needed when users are added or removed.