Hi all - just wondering if there’s a way to add an item to a list via the bubble API?
As an example:
PUT request to /user/{id-of-user-to-update}
I’ve tried sending things like:
{
“fieldname”: “{id-of-item-to-add}”
}
Also on ChatGPT’s recommendation:
{
“fieldname”: “{
“add”: [”{id-of-item-to-add}"]}
}
No luck. Although with the first format I can replace all items with the new array with a POST request. Anyone know how to add an item instead?
Thanks!
Rob