Skip to main content

How to assign an user of my team when i create an item. Can i put an id of one of my users teams and assign him this item ?

hi @JennaD


Welcome to the community. Yes, you can assign a user to an item by putting that userId in a people column for that item. A prerequisite is that the user needs to be subscribed to the board (in case of private and shareable boards).


Hi @basdebruin


Thanks for the response, i just have one more question. Did you have a link to the right reference i have to use, because i try with person, people and items by column values.


hi @JennaD


Something like:


mutation {
change_simple_column_value(board_id: 123456789, item_id: 123456789, column_id: "people", value: "123456" ) {
id
}
}```

See also doc [here](https://api.developer.monday.com/docs/people)

Reply