Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
Cortana
Helper IV
Helper IV

How to change parameter using REST API?

I wanted to change the parameter of a dataset using Python. I created an app with permission Dataset.ReadWrite.ALL from Azure AD.
I was able to get the Access token successfully but could not change the parameter. My code is this-

access_token = 'MY_ACCESS_TOKEN'
workspace_id = "MY_Workspace_ID"
dataset_id = "MY_Dataset_ID"
header = {'Content-Type':'application/json',
          'Authorization':f'Bearer {access_token}'}

# Replace these with your details
parameter_name = 'NAME'
new_value = 'VALUE'

# Define the API endpoint
url = f'https://api.powerbi.com/v1.0/myorg/groups/{workspace_id}/datasets/{dataset_id}/Default.UpdateParameters'

# Create the headers
headers = {
    'Content-Type': 'application/json',
    'Authorization': f'Bearer {access_token}'
}

# Define the body with the parameter update details
body = {
    "updateDetails": [
        {
            "name": parameter_name,
            "newValue": new_value
        }
    ]
}

# Make the API request
response = requests.post(url, headers=headers, data=json.dumps(body))
print(response.status_code)
print(response.json())

It gives output-

403

{'error': {'code': 'InvalidRequest', 'message': 'This operation is only supported for the dataset owner'}}

 

NB: I am the owner of the dataset. 

 

Am I missing something here? Your help is needed.

1 ACCEPTED SOLUTION
FabricGuy
Microsoft Employee
Microsoft Employee

Hi Cortana

 

The error message says that your Service Principal (SPN) is not the Owner of the Semantic Model. I guess you created the report in Power BI Desktop and published it afterwards on behalf of your name. Now, that you wish to update the Parameter, you first need to take ownership by calling this REST API call with the SPN in your Python code: https://learn.microsoft.com/en-us/rest/api/power-bi/datasets/take-over-in-group Afterwards, once the SPN is owner, your call to update the parameter will work.

 

Hope it helps.

View solution in original post

2 REPLIES 2
FabricGuy
Microsoft Employee
Microsoft Employee

Hi Cortana

 

The error message says that your Service Principal (SPN) is not the Owner of the Semantic Model. I guess you created the report in Power BI Desktop and published it afterwards on behalf of your name. Now, that you wish to update the Parameter, you first need to take ownership by calling this REST API call with the SPN in your Python code: https://learn.microsoft.com/en-us/rest/api/power-bi/datasets/take-over-in-group Afterwards, once the SPN is owner, your call to update the parameter will work.

 

Hope it helps.

Thank you so much @FabricGuy  It worked.

 

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.