Hello there,
I am using the create item API route from Monday API V2.
When listing the values for my columns, on a new item in a board, only the item and title are added, no column values using the integromat connector (if that can help).
- texte is a string
- texte1 is a string
- date is a date
- date 7 is a date
- timeline is a timeline field
Here is the request sent:
[
{
"name": "TEST CORP",
"boardId": "583553907",
"groupId": "topics",
"columnValuesToChange": [
{
"columnId": "person",
"columnValue": {
"personsAndTeams": [
{
"id": "11161799",
"kind": "person"
}
]
}
},
{
"columnId": "texte",
"columnValue": 1181186927
},
{
"columnId": "texte1",
"columnValue": "5455"
},
{
"columnId": "date",
"columnValue": {
"date": "2020-05-28",
"includeTime": false
}
},
{
"columnId": "date7",
"columnValue": {
"date": "2020-05-29",
"includeTime": false
}
},
{
"columnId": "timeline",
"columnValue": {
"to": "2020-05-29",
"from": "2020-05-28"
}
}
]
}
]