Hi y’all.
I’m creating a group in Monday using the Monday API.
This is what my query looks like:
{ create_group (board_id: <board_id>, group_name: "new group m8")
{
title
id
items {
id
name
}
}
}
The response is:
{"error_code":"UserUnauthroizedException","status_code":403,"error_message":"User unauthorized to perform action","error_data":{}}
When I omit the items field (ask only for group title + id) there is no such problem.
Anyone run into a similar problem, any insight ?