Hello,
I am trying to perform the following action and getting an error or status code 403 “user unauthorized to perform action”.
Action:
mutation {
create_item (board_id: 344121329, group_id: new_group63732, item_name: "some name", column_values : "{\"person\" : {\"personsAndTeams\" : [{\"id\" : 11471200, \"kind\" : \"person\"}]}, \"contact_method\" : {\"ids\" : [1]}, \"phone\" : {\"phone\" : \"\", \"countryShortName\" : \"US\"}, \"email\" : {\"email\" : \"[test@test.com](mailto:test@test.com)\", \"text\" : \"[test@test.com](mailto:test@test.com)\"}, \"text01\" : \"test\", \"status\" : {\"index\" : 1}}" ) {id}}
Response:
{
“error_code”: “UserUnauthroizedException”,
“status_code”: 403,
“error_message”: “User unauthorized to perform action”,
“error_data”: {}
}
I have verified token and queries working with no issues.
Any help is greatly appreciated.