Hi all,
I am working on connecting a notification API to my app.
I intialized the call in the API connector, and got the correct response.
Response example:
{
“data”: {
“notifications”: [
{
“id”: “2e729889-fb2b-4395-bc85-728a39ef4b59”,
“event_id”: “upload.completed”,
“title”: “FluxRender”,
“body”: “Data upload completed successfully.”,
“params”: {},
“channels”: [
“push”,
“email”
],
“is_read”: false,
“created_at”: “2026-06-09T08:33:57.675084Z”
}
],
“total”: 14,
“unread_count”: 13
}
}
However, when I implement the same API call in my workflow or run it as a Data call, it’s throwing an error on frontend “Issue with the call All Noti notification. Please initialize it again”.
Do you know why it’s happening? I’m clueless.