
Announcements
Hi,
I have simple flow that is triggered when someone applies a site design to a SharePoint Site the Site Design has a Site Script which triggers my flow.
My Site Script triggers the flow using the HTTP POST Url:
{
"$schema": "schema.json",
"actions": [
{
"verb": "triggerFlow",
"url": "URL FROM THE HTTP RESPONSE",
"name": "Apply Company Site Template",
"parameters": {
"event":"",
"product":""
}
}
],
"bindata": {},
"version": 1
}
My flow then triggers an Azure Automation job to apply a pnp-provisioning engine XML template to the SharePoint Site. The Azure Automation job works fine from within Azure, but I get this error below.
Does anyone have any clues as to why this is failing??
Old thread but I thought I'd save people some time.
Check that you have published the runbook. Power automate allows you to select unpublished runbooks in the editor which when ran, produce the "Runbook not found" error.
Azure Home > Automation Accounts > (Select Account) > Runbooks > (Select Runbook) > Edit > Publish
🤦