Power BI Refresh Error:
Fabric Pipeline Error 3611
What does this error mean?
The Azure Function activity definition is incomplete because the required `method` property is absent from the activity JSON. Without a valid HTTP method specified, the pipeline cannot invoke the Azure Function.
Common causes
- 1The `method` property (e.g., GET, POST) was omitted when manually authoring or importing the Azure Function activity JSON definition
- 2A copy-paste or template error resulted in an incomplete activity JSON payload
- 3Programmatic pipeline creation via REST API or SDK skipped the `method` field during serialization
How to fix it
- 1Step 1: Open the Fabric Data Factory pipeline and navigate to the Azure Function activity that is failing.
- 2Step 2: Switch to the JSON editor for the activity and locate the activity definition object.
- 3Step 3: Add a `method` property with a valid HTTP method value (e.g., `"method": "POST"`) to the activity JSON definition.
- 4Step 4: Save the updated activity definition and validate the pipeline to confirm no further schema errors exist.
- 5Step 5: Re-trigger the pipeline run and confirm the Azure Function activity completes successfully.