Hello, I would like to ask if its possible to define "createdById" in API stream note post manualy?
The thing is that every stream note created through API has API user listed in "createdById" and "createdByName"
We tried this payload attributes but 'createdById' => $espoUserId doesnt work. $espoUserId has correct data (ticket user ID)
$stream_data = array(
'type' => 'Post',
'parentId' => $ticket_id,
'parentType' => 'Case',
'post' => $streamComment,
'createdById' => $espoUserId
);
Thanks
The thing is that every stream note created through API has API user listed in "createdById" and "createdByName"
We tried this payload attributes but 'createdById' => $espoUserId doesnt work. $espoUserId has correct data (ticket user ID)
$stream_data = array(
'type' => 'Post',
'parentId' => $ticket_id,
'parentType' => 'Case',
'post' => $streamComment,
'createdById' => $espoUserId
);
Thanks
Comment