I want to update an activity record (phone call/task etc) depending on its type.
How do I do this using the action 'Update a record' ? I need to specify an entity type but I want to do this dynamically using a variable?
The variable contains the activity entity type.
I get the following when I enter the entity type using a custom value :
I am not able to progress further.
Solved! Go to Solution.
Hi @Stanza,
As far as I am aware this is limitation of that update a record action.
However, a workaround could be to use the Web API of Microsoft DataVerse instead: https://docs.microsoft.com/en-us/powerapps/developer/common-data-service/webapi/overview
1. Register an app in Azure AD and assign the Microsoft DataVerse impersonation delegated permissions
2. Create an Application User with the Client Id of the Azure AD App
3. Use an HTTP action in your flow with the following URI and the client id, tenant id and secret from your Azure AD app in the authentication section.
@{variables('EnvironmentUrl')}/api/data/v9.0/@{variables('Entity')}(@{variables('RecordId')})
Hi @Stanza,
As far as I am aware this is limitation of that update a record action.
However, a workaround could be to use the Web API of Microsoft DataVerse instead: https://docs.microsoft.com/en-us/powerapps/developer/common-data-service/webapi/overview
1. Register an app in Azure AD and assign the Microsoft DataVerse impersonation delegated permissions
2. Create an Application User with the Client Id of the Azure AD App
3. Use an HTTP action in your flow with the following URI and the client id, tenant id and secret from your Azure AD app in the authentication section.
@{variables('EnvironmentUrl')}/api/data/v9.0/@{variables('Entity')}(@{variables('RecordId')})
Join digitally, March 2–4, 2021 to explore new tech that's ready to implement. Experience the keynote in mixed reality through AltspaceVR!
Power Platform release plan for the 2021 release wave 1 describes all new features releasing from April through September 2021.
User | Count |
---|---|
89 | |
60 | |
42 | |
35 | |
32 |
User | Count |
---|---|
79 | |
67 | |
57 | |
49 | |
41 |