我需要在 monday.com 上的组中添加多个文本值。我怎样才能做到这一点?以下代码适用于单列插入
curl -X POST \
https://api.monday.com/v2/ \
-H 'Accept: */*' \
-H 'Accept-Encoding: gzip, deflate' \
-H 'Authorization: eyJhbGciOiJIUzI1NiJ9.eyJ0aWQiOjE4NDcyNDg1LCJ1aWQiOjk2MDE3NDUsImlhZCI6IjIwMTktMDc' \
-H 'Cache-Control: no-cache' \
-H 'Content-Type: application/json' \
-H 'cache-control: no-cache' \
-d '{
"query" :"mutation {create_item (board_id: 279985058, group_id: \"incoming_request\", item_name: \"Apple\", column_values:\"{\\\"text\\\":\\\"jihin\\\"}\") {id}}"
}
'