Using the API to Put an Update on a Record

I’ve been trying to write a simple “update” via CURL action using Zapier with no success. I have done this successfully using a Python PUT, but not via Zapier.

Can I simply build a full URL string, such as
"https://api.knack.com/v1/objects/object_121/records/RECORDID?updates={“field_3573”: “abcd”}

And send it along with just an authentication header?

Hi @Michael8, you can use the Webhooks by Zapier step with a PUT action event for this:
The example I have below is a view-based request, but you can substitute the URL for an object-based request.
The fields you want to update get added in the Data section.

Hope that helps!

That worked! Just need to figure out how to send a value for a many-to-many connection.