ContributionsMost RecentMost LikesSolutionsREST API search messages by Metadata Hi, The GET message by metadata is not working suddenly, it was working fine till yesterday. In lithium api browser its returning data for the same metadata query. Lithium - API Browser – Returning Data select * from messages where c_cust_id='test - 321' API Call from Our application url1 : https://test.abc.com/api/2.0/search?q=select+%2A+from+messages+where+c_cust_id%3D%27Test+-+321%27 url2 : https://test.abc.com/restapi/vc/search/messages?q=custom.id:'Test - 321' Headers : Content-Type - application/json client-id - VvhCplkjSJLJLKAkjakHLlkjALjgSLkhkjkSLKHLSasktrreyale1I= response : {"status":"success","message":"","http_code":200,"data":{"type":"messages","list_item_type":"message","size":0,"items":[]},"metadata":{}} Re: Is there any way to add unique/hidden field to message from REST API Hi VikasB, I have created message with below given data, that also its throwing error, Method : POST URL : https://api.stage.lithium.com/community/2.0/hhhkhk/messages Headers: Content-Type - application/json client-id - asdasdasdasd Authorization - Bearer dfdsfsdfsd Data : { "data": { "type": "message", "subject": "hello world", "body": "this is a message post.", "board": { "id": "abcdiscussions" }, "labels":"test1, test2" } } Repsonse: {"status":"error","message":"Unable to parse the required Content-Body from the request.","data":{"type":"error_data","code":308,"developer_message":"'labels' object does not contain a 'list_item_type' property, which is required for lists.","more_info":""},"metadata":{}} Note: One more thing, which call can we use for REST API (https://api.stage.lithium.com/community/2.0/hhhkhk/messages OR http://community.lithium.com/community-name/restapi/vc) Regards Rajesh Re: Reply Message - REST APIThanks Tariq. But PUT request also not working, its throwing same "Unauthorized" error given above. can able to create message using the same Token.Is there any way to add unique/hidden field to message from REST API Hi, Am posting messages in particular board from REST API. Messages might have same SUBJECT line (can post from Application / REST API), from these how can i identify which one is created from REST API. Is there any field to find it. Or can we set any customized field, if yes please tell me how to do it. Reply Message - REST API Hi, I tried below given 2 methods for REPLY to the message, but none of these working. Anyone help me out from this, i have missed anything or another ways are there to REPLY to the message in the board. This method is creating new message not replying to the mentioned parent. Method : POST URL : https://api.stage.lithium.com/community/2.0/tenant_id/messages Headers : Content-Type - application/json client-id - JJHJHKJHKHJKLJLJLKJKJLJKJJLJL= Authorization - Bearer HJHJHJHJHJHJHJHJHJJH= Data : { "data": { "type": "message", "subject": "hello world", "body": "this is a message post.", "board": { "id": "kzkzkzkzkzkz" }, "parent":"123456" } } This method is throwing error. Method : POST URL : http://community_name/restapi/vc/messages/id/123456/reply Headers : Content-Type - application/json client-id - JJHJHKJHKHJKLJLJLKJKJLJKJJLJL= Authorization - Bearer HJHJHJHJHJHJHJHJHJJH= Data : { "data": { "type": "message", "subject": "hello world", "body": "this is a message post.", "board": { "id": "kzkzkzkzkzkz" } } Reponse: Unauthorized This server could not verify that you are authorized to access the document requested. Either you supplied the wrong credentials (e.g., bad password), or your browser doesn't understand how to supply the credentials required.