Post by TrueNorth IT
264 followers
One of the most common portal requirements: "I need a dropdown that matches the picklist values in Dynamics." Most teams hardcode them. Then the values change. Then the portal is wrong. Then someone files a bug. Our API fetches picklist values live from the CRM: const { fields } = await client.choices("case"); // Build a status filter dropdown When someone adds a new status in Dynamics 365, your portal picks it up automatically. No redeployment. No code change. Works for every picklist, state, and status field across every table the API exposes. No server code. No Entra app registration. No OData. Just npm install and build.