/GetAllConversationList

When a request is made with the received Token, it lists all of the company’s conversations in the system. It does not wait for any parameters other than the token information. Authorization header should be entered as “token_type” value, space character, “Access_token” value returned as a result of the Token request.

 As a result of the request, you will see that the list of master records of the conversations of your company is returned in JSON format.

GetAllConversationList Sample Code (C#)

private static IRestResponse GetAllConversationList()
            {
                RestClient client = new RestClient("https://api.flexxii.com");
                RestRequest request = new RestRequest("api/Inbox/GetAllConversationList", Method.GET);
                request.AddHeader("Content-Type", "application/json; charset=utf-8");
                request.AddHeader("Authorization", content_type + " " + access_token);

                IRestResponse response = client.Execute(request);
                return response;
            }

Was this helpful?

0 / 0