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
  • Thanks Mathew for your response...

    No, There is no such exceptions logged there. Even I tried the Rest API, code is below:-

    jQuery.telligent.evolution.post({
    url: jQuery.telligent.evolution.site.getBaseUrl() + 'api.ashx/v2/conversations.json',
    data: {
    'Subject': 'subject',
    'Body': 'body',
    'Usernames': 'vikas_5f00_sharma12'
    },
    success: function(response) {
    console.log(response);
    }
    });

    conversation API (Rest) Error

    Note: Found an error that it is showing User could not be found but User is valid and we're using this user.



Children
No Data