ContributionsMost RecentMost LikesSolutionsRe: question about authorization codeGreat, thanks for your reply! It works. Regards Shongquestion about authorization code Hi I am calling API in browser to get authorization code, it returns the result like this: https://xxx/?code=qvOisvrJIV7v6MXPmhH7wF%2B8oBZW5%2FdnTg8geLTCGsM%3D&user-id=30&tenant-id=xxx&proxy-host=xxx From this URL, I can see the code=qvOisvrJIV7v6MXPmhH7wF%2B8oBZW5%2FdnTg8geLTCGsM%3D I need to use this authorization code in Rest client tool like postman to get the access token, if use this value directly, it returns status as "Authorization code is NOT authorized", it seems I need to convert the encoded code like %2B to corresponding special character. my question is what character does %2B stand for?%2F? and %3D? Regards Shong SolvedRe: undefined collection: solutions_dataThanks, I will test and update to you.Re: undefined collection: solutions_dataHi him_varma Thanks for your reply. I execute the LiQL as you said, it returns the result like this; { "status" : "success", "message" : "", "http_code" : 200, "data" : { "type" : "messages", "list_item_type" : "message", "size" : 3, "items" : [ { "type" : "message", "solution_data" : { } }, { "type" : "message", "solution_data" : { } }, { "type" : "message", "solution_data" : { } } ] }, "metadata" : { } } No detailed information about solution_data, what's wrong? Regards Shong undefined collection: solutions_data Hello I am using API browser to execute this LiQL: select * from solutions_data But it returns the following error: { "status" : "error", "message" : "undefined collection: solutions_data", "data" : { "type" : "error_data", "code" : 602, "developer_message" : "", "more_info" : "" }, "metadata" : { } } According to the API V2, https://community.lithium.com/t5/Developer-Documentation/bd-p/dev-doc-portal?section=commv2&collection=solutions_data I can see the description of solutions_data collection, what's wrong? Regards Mike Solved