Hi folks -
I’m attempting to create a notification via the API, using this query:
mutation {
create_notification (
user_id: 11227690,
target_id: 373022691,
target_type: Project,
text: "This is a message"
) {
id
}
}
The user ID is my ID, and the target ID is an item ID for a board that I am the owner of. I get back this response:
{
"data": {
"create_notification": {
"id": "-1"
}
},
"account_id": 4751227
}
No notification gets sent. I confirmed I can get notifications via automations, but nothing via the API.
Any ideas?