modify order with V2 api dosnt work , can you please check
def ModifyCorrect():
url = "https://api-v2.upstox.com/order/modify"
# Define the headers
headers = {
'Accept': 'application/json',
'Api-Version': '2.0',
'Content-Type': 'application/json',
'Authorization': f'Bearer {access_token}', # Replace 'access_token' with your actual access token
}
data = {
“quantity”: 1,
“validity”: “DAY”,
“price”: 115,
“order_id”: “231103025345598”,
“order_type”: “LIMIT”,
“disclosed_quantity”: 0,
“trigger_price”: 0,
}
response = requests.request("PUT", url, headers=headers, data=data)
print(response)
this is my code im getting response 400