Hello community! :upside_down_face:
I have a table where I store my products, in which I have a multiple select field called “Who has access”. I`d like to record in that field the user id of all users that had purchased each of my products.
I`m using Bravo Studio to develop my app so I have a PATCH request API there, where I enabled the “typecast” parameter, once Id like to be able to concatenate a new user id every time that request is called.
However, every time I execute the request the value of the field “Who has access” is overrided instead of concatenated with the new user id. :confounded:
My JSON code in the PATCH request looks like:
{
“records”:
[
{
“id”: “${record_mimo_id}”,
“fields”:
{
“Who has access”: [“${user.id}”]
}
}
],
“typecast”: true
}
Im struggling to find out what Im doing wrong :sob:
Does anyone can help please?
