I want to update a database with the api and I have a multi select column... I want to add an option to a row in my table, but I can't figure out to how to get the ID of the specific option. options
Asked
Active
Viewed 780 times
1 Answers
1
You can just use the name of the options, so you would use:
{
"Tags": {
"multi_select": [
{
"name": "auth"
},
{
"name": "video"
}
]
}
}
You don't need any ids for that:)

Jonas Scholz
- 485
- 5
- 15