Power BI Refresh Error:
Fabric Pipeline Error 3612
What does this error mean?
The Azure Function activity JSON definition is missing the linked service connection details required to authenticate and connect to the target Azure Function App. The pipeline cannot resolve the endpoint without this configuration.
Common causes
- 1The linked service reference was not included when the Azure Function activity was defined programmatically or imported from an external template
- 2The linked service was deleted or renamed after the pipeline was originally created, leaving a broken reference
- 3A partial pipeline export or migration omitted the linked service definition from the activity JSON
- 4Manual JSON editing accidentally removed the connection details block from the activity definition
How to fix it
- 1Step 1: Open the failing pipeline in Fabric Data Factory and select the Azure Function activity that is producing Error 3612.
- 2Step 2: Switch to the JSON editor and inspect the activity definition for the presence of a linked service block containing the Azure Function App connection details.
- 3Step 3: If the linked service block is absent, add it by referencing an existing Azure Function linked service or create a new linked service pointing to the correct Function App URL.
- 4Step 4: Ensure the linked service includes the `functionAppUrl` and any required authentication settings (e.g., function key or managed identity).
- 5Step 5: Save, validate, and re-run the pipeline to confirm the linked service resolves correctly and the activity executes.