{
\"messages\": {
\"fields\": [ \"id\", \"view_href\", \"subject\", \"board\"],
\"constraints\": [
{ \"board.id\": \"developerDiscussion\" }
],
\"sorts\": [\"is_solution\"],
\"limit\": 5
}
},
{
\"boards\": {
\"fields\": [ \"id\", \"title\"],
\"constraints\": [
{ \"id\": \"'developerDiscussion'\" }
]
}
}
]\n
HTTPS Example
\n\n
\n
\n
\n
This example JSON body requests the id, subject, and author.login fields for the last five topic messages posted to the photography board.
\nFirst, the query definition requests the topics in the board, and then defines the subquery. This saves you from having to make a separate call.
\n\n
\n
\n
\n
A POST to the /batch endpoint enables you to make multiple calls to Community API v2 in a single request. You can make Create, Read, Update, Delete, and Query calls within the same batch request.
\nNote: The /batch endpoint is supported over HTTPS only. It is not supported in FreeMarker methods that make requests to the Community API (E.g., rest, restBuilder, liql) .
\nNote: Endpoints supporting the following resources are not allowed in requests made with the /batch endpoint: Auth, Product_Catalog, Schema, and Archive.
\nWe'll look at a quick example below. Find full documentation in the Developer Documentation Portal.
\nA batch request looks something like this:
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
The REST Usage tab in Toolbox now includes Studio endpoints. Hover over the name of the endpoint to view the number of requests to the Community REST API.
\nNote: You cannot click into an endpoint section of the pie graph to drill down to see the individual calls.
\n\n
You can now request both a function (like topics.count(*)) and a list (like topics) in the same query to the /search endpoint. Previously, a query like SELECT topics, topics.count(*) FROM boards WHERE id = 'MyBoard' would only return the count.
\nHello from Khoros Communities. We're still here and we're glad you are too. We hope that you and your loved ones are staying safe and healthy.
\nCommunity 20.5 might look like a light release, but we have one big update that affects the single most used feature for nearly every customer - the GA of Inline Replies and Threading for Forums! In addition, our teams are working on exciting features currently in development and beta. There are also some nice additions to the Developer Experience. We've added support for batched and JSON-based requests to Community API v2, and we've added details about Studio endpoint customizations in Toolbox.
","introduction":"","coverImage":null,"coverImageProperties":{"__typename":"CoverImageProperties","style":"STANDARD","titlePosition":"BOTTOM","altText":""},"currentRevision":{"__ref":"Revision:revision:586855_9"},"latestVersion":{"__typename":"FriendlyVersion","major":"5","minor":"0"},"metrics":{"__typename":"MessageMetrics","views":1706},"visibilityScope":"PUBLIC","canonicalUrl":null,"seoTitle":null,"seoDescription":null,"placeholder":false,"originalMessageForPlaceholder":null,"contributors":{"__typename":"UserConnection","edges":[]},"nonCoAuthorContributors":{"__typename":"UserConnection","edges":[]},"coAuthors":{"__typename":"UserConnection","edges":[]},"blogMessagePolicies":{"__typename":"BlogMessagePolicies","canDoAuthoringActionsOnBlog":{"__typename":"PolicyResult","failureReason":{"__typename":"FailureReason","message":"error.lithium.policies.blog.action_can_do_authoring_action.accessDenied","key":"error.lithium.policies.blog.action_can_do_authoring_action.accessDenied","args":[]}}},"archivalData":null,"customFields":[],"body":"Community 20.5 might look like a light release, but we have one big update that affects the single most used feature for nearly every customer - the GA of Inline Replies and Threading for Forums! In addition, our teams are working on exciting features currently in development and beta. There are also some nice additions to the Developer Experience. We've added support for batched and JSON-based requests to Community API v2, and we've added details about Studio endpoint customizations in Toolbox.
\n\nIn the 20.1Release Notes, we announced Early Access for our Inline Replies and Threading feature. This feature is now in General Availability (GA).
\nWith Inline Replies and Threading you can reply to the main message or reply to a reply. This helps to better organize discussions and keep the context of the discussion meaningful.
\n\n
Learn more about the Inline Replies and Threading feature.
\nLearn more about Inline Replies and Threading with examples
\nLearn about quilt changes for forums that are customized according to community needs.
\nThe Community API v2 /search endpoint can now take a raw JSON body in a POST request. A POST request enables you to make multiple search queries in a single request. POST also supports making subqueries in the same request. (Subquery support enables you to make a second query within the same request in cases where a field of an object returns a LiQL query in the response instead of the subobjects -- for example topics on the board resource.)
\nNote: JSON-based queries are supported over HTTP only. If you are writing a Freemarker customization, you should continue to use LiQL strings.
\nJSON-based queries use the same principles as LiQL-based queries. We describe these principles in Using LiQL. See our collection documentation for the fields, constraints, and sorts supported for each Community API v2 resource type.
\nWe'll look at a couple of quick examples here in the release notes. Find the full documentation for making JSON-based queries in the Developer Documentation Portal.
\nThe following example JSON is equivalent to these two LiQL queries:
\nCreate a separate subobject for each collection to query that includes the fields, constraints, sorts, and other entities as needed.
\nExample JSON body
\n[\n
{
\"messages\": {
\"fields\": [ \"id\", \"view_href\", \"subject\", \"board\"],
\"constraints\": [
{ \"board.id\": \"developerDiscussion\" }
],
\"sorts\": [\"is_solution\"],
\"limit\": 5
}
},
{
\"boards\": {
\"fields\": [ \"id\", \"title\"],
\"constraints\": [
{ \"id\": \"'developerDiscussion'\" }
]
}
}
]
HTTPS Example
\n\n
\n
POST /api/2.0/search HTTP/1.1\nHost: [COMMUNITY DOMAIN]\nli-api-session-key: [SESSION KEY]\nContent-Type: application/json\n\n[\n { \n \"messages\": {\n \"fields\": [ \"id\", \"view_href\", \"subject\", \"board\"],\n \"constraints\": [\n { \"board.id\": \"developerDiscussion\" } \n ],\n \"sorts\": [\"is_solution\"],\n \"limit\": 5\n }\n },\n {\n \"boards\": {\n \"fields\": [ \"id\", \"title\"],\n \"constraints\": [\n { \"id\": \"developerDiscussion\" } \n ]\n }\n }\n]\n
\n\n
\n
This example JSON body requests the id, subject, and author.login fields for the last five topic messages posted to the photography board.
\nFirst, the query definition requests the topics in the board, and then defines the subquery. This saves you from having to make a separate call.
\n\n
\n
[\n {\n \"boards\": {\n \"fields\": [\n \"topics\"\n ],\n \"constraints\": [\n {\n \"id\": \"photography\"\n }\n ],\n \"subQueries\": {\n \"topics\": {\n \"fields\": [\n \"id\",\n \"subject\",\n \"author.login\"\n ],\n \"limit\": 5\n }\n }\n }\n }\n]\n
\n\n
\n
A POST to the /batch endpoint enables you to make multiple calls to Community API v2 in a single request. You can make Create, Read, Update, Delete, and Query calls within the same batch request.
\nNote: The /batch endpoint is supported over HTTPS only. It is not supported in FreeMarker methods that make requests to the Community API (E.g., rest, restBuilder, liql) .
\nNote: Endpoints supporting the following resources are not allowed in requests made with the /batch endpoint: Auth, Product_Catalog, Schema, and Archive.
\nWe'll look at a quick example below. Find full documentation in the Developer Documentation Portal.
\nA batch request looks something like this:
\n\n
\n
\n
\n
\n
\n
POST /api/2.0/batch HTTP/1.1\nHost: [COMMUNITY DOMAIN]\nContent-Type: application/json\nCache-Control: no-cache\n \n[\n {\n \"create\": {\n \"type\": \"board\",\n \"entity\": {\n \"id\": \"batchRequestForum\",\n \"conversation_style\": \"forum\",\n \"title\": \"Batch Request Forum\",\n \"description\": \"I created this forum using the /batch endpoint\",\n \"allowed_labels\": \"predefined-only\",\n \"parent_category\": {\n \"id\": \"batchRequestTestCategory\"\n }\n }\n }\n },\n {\n \"create\": {\n \"type\": \"message\",\n \"entity\": {\n \"board\": {\n \"type\": \"board\",\n \"id\": \"batchRequestForum\"\n },\n \"subject\": \"First message\",\n \"body\": \"I created this message using the /batch endpoint\"\n }\n }\n },\n {\n \"read\": {\n \"type\": \"board\",\n \"id\": \"batchRequestForum\",\n \"fields\": [\n \"id\",\n \"title\",\n \"description\",\n \"conversation_style\",\n \"parent_category\",\n \"topics\"\n ]\n }\n },\n {\n \"update\": {\n \"type\": \"board\",\n \"id\": \"batchRequestForum\",\n \"entity\": {\n \"description\": \"This is my updated forum description. I updated it using the /batch endpoint\"\n }\n }\n },\n {\n \"read\": {\n \"type\": \"board\",\n \"id\": \"batchRequestForum\",\n \"fields\": [\n \"id\",\n \"title\",\n \"description\",\n \"conversation_style\",\n \"parent_category\",\n \"topics\"\n ]\n }\n }\n]\n
\n\n
\n
\n
\n
\n
\n
The REST Usage tab in Toolbox now includes Studio endpoints. Hover over the name of the endpoint to view the number of requests to the Community REST API.
\nNote: You cannot click into an endpoint section of the pie graph to drill down to see the individual calls.
\n\n
\n
You can now request both a function (like topics.count(*)) and a list (like topics) in the same query to the /search endpoint. Previously, a query like SELECT topics, topics.count(*) FROM boards WHERE id = 'MyBoard' would only return the count.
\nJust curious, is there any update on the potential SEO issue on threaded replies that Claudius raised in these comments?
","body@stringLength":"324","rawBody":"Just curious, is there any update on the potential SEO issue on threaded replies that