I have configured frame.io to call a zapier webhook when a project is created. The zap then calls the frame.io api to modify the project_preferences.
URL: https://api.frame.io/v2/projects/{my_project_id}
Request Body:
{
"project_preferences": {
"notify_slack": true
}
}
I have tried including the id in the payload too, and a few other variations. Anyways, the endpoint returns 200 but in the response.data I can see that notify slack has not been changed, and when I go to the UI it is also unchanged. Am I misunderstanding the payload?