API issue of core_v2_conversation not getting messages in USer profile message box

Hi Telligent Team,

I'm not able to get the messages while submission of a form or update something in v10.3. I checked $core_v2_conversation is not supported subject now. So, I implement as per new API like below:-

#set($conversationResponse = $core_v2_conversation.Create( $body, $accessingUser))
But still not able to get a message in the mailbox. Also found a strange thing. In another page, I forgot to remove the subject from API but still that page is working fine. After submission of that page, I'm getting submission message in my mailbox. Using the below API:- 

#set($conversationResponse = $core_v2_conversation.Create($subject, $body, $accessingUser))

Thanks,
Rahul Jetli

Parents Reply
  • Update:  Tried again Widget API is working only when I tried to send message to another user except for Users are sending message to themselves but in my scenario, When Users want to update their accounts from MSD to AAD or vice versa so they will get a user token to Map their account as a message in the mailbox. But with this API, not able to get messages.
    Code is below:-

    #set($accessingUser = $core_v2_user.Accessing.Username)

    #set($conversationResponse = $core_v2_conversation.Create( $body, $accessingUser))

Children