API - change program metadata returning the same details?
Hi everyone
I'm using this endpoint to try and update the name of a Marketo Email program. https://developers.marketo.com/rest-api/endpoint-reference/asset-endpoint-reference/#!/Programs/updateProgramUsingPOST
Here's my Python code:
updateProgramRequest = {'name': 'GA_190123 VIP Wellness Sale - German'}
parameters = {'access_token': access_token, 'updateProgramRequest': updateProgramRequest}
data = requests.post(
base_endpoint + "program/5525.json",
params=parameters
).json()
I get a 200 response, so it's saying it worked - but all the parameters - including "name", which I am trying to update - look exactly the same. I confirmed in Marketo that nothing has changed. Why?