Skip to content

Commit b2d5223

Browse files
committed
Add limitations
1 parent 4cda669 commit b2d5223

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

articles/digital-twins/how-to-use-power-platform-logic-apps-connector.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,13 @@ Follow the steps below to create a sample flow with the connector in Logic Apps.
7373

7474
For examples of using the connector in Power Platform flows, see [Azure Digital Twins getting started samples](https://github.com/Azure-Samples/azure-digital-twins-getting-started).
7575

76+
## Limitations and suggestions
77+
78+
Here are some limitations of the connector and suggestions for working with them.
79+
80+
* Some connector actions (such as Add Model) require input in the form of a literal string that starts with *@*. In these cases, escape the *@* character by using *@@* instead. This will keep the literal value from being interpreted as a JSON expression.
81+
* Since Azure Digital Twins deals with dynamic schema responses, you should parse the JSON received from the APIs before consuming it in your application. For example, here's a set of calls that parse the data before extracting the `dtId` value: `Set(jsonVal, AzureDigitalTwins.GetTwinById(TextInput1.Text).result); Set(parsedResp, ParseJSON(jsonVal)); Set( DtId, Text(parsedResp.'$dtId'));`.
82+
7683
## Next steps
7784

7885
For more information about Power Platform connectors, including how to use them in workflows across multiple products, see the [Power Platform and Azure Logic Apps connectors documentation](/connectors/connectors).

0 commit comments

Comments
 (0)