Powering Up Your MVP

After completing the strategic domain design and feature mapping, our next logical step would be undertaking the tactical domain design of identifying aggregates, entities, value objects etc. But I prefer to hammer out an MVP built-in low code before going that route. Why?

Mike Tyson Plan Punch

  1. It is always a good idea to validate your design decisions as quickly as possible.

  2. We are hosting the Global Power Platform Bootcamp in February, providing us an opportunity to check out the Power Platform.

    • To compensate for our non-existent UX skills, we are riding piggyback on Power Platform's ability to stitch up a much decent UI than we ever can.
    • Our office productivity suite is M365, and this, in combination with Power Platform, means fewer securities snafus due to slip-ups in terms of access and permissions.
    • We can iterate and incubate changes to our processes in-house initially, see how things go and then introduce them to other community organizers.

First Iteration #

Since we were new to the Power Platform, as any developer worth its salt, we threw caution to the wind and rushed headlong into creating a Canvas Power App invoking an external API.

A Canvas App is, as the name suggests, a blank slate that allows you the free-style your UI.

Custom API #

To invoke the Eventbrite endpoint, an external API, we need to create a Custom Connector(Custom API). The latter is a Premium connection under Power Platform(=> its costs extra 💲💲). So we had to use a trial environment to get this working.

There has been substantial refactoring of Eventbrite's API. While previously I had to navigate through their Event blade to get Event details, for v3, I had to use the Organizations object.

Also, I would be remiss if I did not mention Nightingale. It is a gorgeous app while at the same time being a highly performant API Testing Client built natively for Windows 10, and it shows.

Just look at that exquisite screen in dark mode below 👇.

Nightingale Rest Client

The Custom API also requires an Open API Specification File. Ah, here's the catch, not the latest v3 but rather the previous version. The below version shows how this is done with the
Swagger inspector.

Swagger Inspector

With the swagger file, Microsoft Docs has provided a straight forward method to create the Custom API.

Custom API

Nevertheless, I did not feel the Connector creation to be quite intuitive, at least for now.

Second Iteration #

Off we went to search among the Interwebz and we found a solution that was almost similar to ours in the Power Users Community. It consisted of a Canvas Power App that acted like a HTML form to collect values and pass it on to a Power Automate Flow. The flow, by Brian Dang, would do the heavy lifting of invoking the external API and massaging the JSON result. While the original flow returned the result back to the Canvas App, our use case was to insert it into the custom tables we created in Dataverse

Get Events Canvas Power App

Get Events Power Automate Flow

Wiring up the Canvas Power Apps with Power Automate Flow, we get our Eventbrite events

Final Result

Learnings #

  1. In the Power Automate Flow, where the 1st step involves consuming data passed from the Power Apps, ensure you rename the variable before clicking on "Ask in PowerApps".

    • If you click on the Ask in PowerApps without renaming the variable, then PowerApps provides its nomenclature for the variable.

    Clicking on Ask in PowerApps without renaming

    • Renaming the variable will still leave you with the previously named variable.

    Renaming the original variable

    • And your pain is going to be compounded if the bridge variable was a required field in PowerApps. You now have to provide two mandatory values.

    Testing Flow

    • So save yourself some hassles and rename your variable before clicking on that dark lavender-colored button.

    Renaming variable beforehand

  2. We had to add an invisible timer with a recurring frequency of 5 seconds[YMMV] to the Canvas App. At the end of the timer, the Gallery view of the result would be refreshed. This was to account for the network latency during the API call. I felt from a UX perspective, controls like Gallery View should have a "watch" feature over their source. A citizen developer would not necessarily understand this nuance.

  3. The biggest challenge was encountered during the insertion of the API results into the Dataverse custom tables. This was a two-table operation that involved a lookup from the secondary table. And what seemed a simple step, kept failing repeatedly even after tweaking the lookup value multiple times.

Flow run Fail while inserting API results into Dataverse

The error message was constant: Resource not found for the segment...

Resource Not Found

Solution: In the latest Dataverse version, the lookup value has to follow the OData format: The primary table name(including its prefix, if its a custom table) in the plural and in the small case and then followed by a slash and the secondary table GUID(already available in the Dynamic Content).

OData Lookup

Tough for a citizen developer to be able to get this. Especially, since this value can be automatically constructed by Flow. If you look at the highlights in the diagram, it knows it is a lookup and what table it is looking up.

🙏🙏🙏

Since you've made it this far, sharing this article on your favorite social media network would be highly appreciated 💖! For feedback, please ping us on Twitter.

Published