power-automate

How to retrieve value in selected SharePoint list item column

前提是你 提交于 2020-04-30 11:07:43
问题 In a SharePoint list, I have a column that holds a foreign key ID to another list. For example: list teachers list classes with foreign key column teacherID to teacher item I am trying to create a Power Automate flow that starts with a SharePoint "For a selected item" in classes and then modifies the referenced teacher list item. "For selected item" in classes Modify teachers item referenced by classes. teacherID All(!) I need to do is get the value of teacherID , but that has turned out to

How to retrieve value in selected SharePoint list item column

◇◆丶佛笑我妖孽 提交于 2020-04-30 11:06:05
问题 In a SharePoint list, I have a column that holds a foreign key ID to another list. For example: list teachers list classes with foreign key column teacherID to teacher item I am trying to create a Power Automate flow that starts with a SharePoint "For a selected item" in classes and then modifies the referenced teacher list item. "For selected item" in classes Modify teachers item referenced by classes. teacherID All(!) I need to do is get the value of teacherID , but that has turned out to

SharePoint returns General Exception: An unspecified error has occurred

ε祈祈猫儿з 提交于 2020-03-03 17:15:52
问题 We create a Team with Power Automate using the Graph API from an HTTP Action: We are calling the following URI using application permissions. https://graph.microsoft.com/v1.0/groups('8c250cdd-1f21-405d-b45f-f95cf248e9d8')/sites('root')/webUrl But the result is an HTTP 500 : { "error": { "code": "generalException", "message": "An unspecified error has occurred.", "innerError": { "request-id": "0649718d-057d-4c4c-9fec-986c158376ee", "date": "2019-12-02T09:11:10" } } } Calling the same URL in

Microsoft Flow SharePoint to Teams HTTP 413

霸气de小男生 提交于 2020-01-04 04:23:05
问题 I have a Microsoft Flow which pulls a SharePoint List item and it's attachments, creates a message, then sends that message to Teams through a Webhook connector. In order to send the attachments, I am required to send the Base64 representation. I believe this is making the message too large, as I am receiving HTTP 413 response. The message I am sending is correct (I tested it in the Actionable Message playground), but it's the connection (HTTP POST to Teams) which is failing. Please help me

Update Dynamics environment when migrating MS Flow

怎甘沉沦 提交于 2020-01-03 05:33:08
问题 I have got a Microsoft flow using a Dynamics (Common Data Service) connection. The Dynamics user I'm using can access several environments in the tenant. If I export the flow and import it in a new environment I'm able to choose/create a new connection for the destination environment, so no problem there. But I haven't found a way to change the "environment" variable so to the Dynamics connection is done to the destination "environment". Is there any automated way to export+import a flow and

Adding a Tab to a Team Channel through Flow

隐身守侯 提交于 2019-12-25 02:44:27
问题 I'm trying to use Flow to add a SharePoint List Tab to a Channel in a Team. But while I can add a Tab, the Tab is always blank. I've tried both Microsoft Graph Explorer and Flow but I can't seem to configure the tab to show my SharePoint List. Or any other app for that measure. The tab is always blank. I've followed the POST from the API POST https://graph.microsoft.com/v1.0/teams/{id}/channels/{id}/tabs Body: NOTE: 2a527703-1f6f-4559-a332-d8a7d288cd88 is the TeamsAppsId for Sharepoint and

Microsoft Flow Custom Connector webhook trigger definition and implementation : 404 not found after flow creation

半腔热情 提交于 2019-12-24 08:29:09
问题 I'm trying to create a custom connector for my API in Microsoft Flow so users can trigger flows based on a webhook implementation. The authentication part seems to be working properly (I'm able to create connections). After creating a flow using my custom trigger, it never gets triggered. When checking the data on my end it seems that Flow was never able to register the subscription properly . If I navigate to the management page for the flow, I get the following error message. When I click

Microsoft Flow integration

耗尽温柔 提交于 2019-12-24 08:04:48
问题 I read an article about Microsoft Flow. I was wondering if it is possible to trigger events using this in an external website. For instance, supposing a post is made on Yammer for some approval flow based application. If an authorized user comments saying "Approved", this must trigger an action in my external website. Is this feasible using Flow? 回答1: You can also make your own custom connectors if your website has a RESTful API. https://docs.microsoft.com/en-us/flow/register-custom-api 回答2:

Is it possible to automate the execution of a Python script using Microsoft Flow?

独自空忆成欢 提交于 2019-12-23 15:03:26
问题 I want to execute a snippet of python code based on some trigger using Microsoft-Flow. Is there a way to do this? Basically I am exploring on Powerapps and Microsoft-Flow. I have data in powerapp, I can do basic operations there. But, I want to execute a python script whenever a user press button in the powerapp and display the result on powerapp again. 回答1: In theory you can do with Azure Functions. The steps you need are the following: Create an Azure function Create the API definition