Require MetaData #469
-
Hi , user is asking the meta-data of attached excel-sheet do_id’s . Medium Grade Subject DigitalTextbook Chapter I've checked on the web portal , and through postman-api-call also , but few are the meta-data are not available, please see below. Medium → is available. Grade → (GradeLevel) is available Subject → subject is available DigitalTextbook → not available. Chapter → not available. can you please check the un-available meta-data, and if it’s not there . then can you please implement it. Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
@BimleshTrigyn Please provide the following details:
You can also refer to this page to see the examples of using search API. Please raise such queries as part of "General Discussions", not as Bugs. |
Beta Was this translation helpful? Give feedback.
@BimleshTrigyn Information about to which collection (like a Digital Textbook) a content is linked to is not part of Content Metadata. So you will not get that information from the Content Read API. A content can be linked to one or more collections. So you need to use Search API to get that details.
The page I had shared provides the example filters to be used for the search query to get the Digital Textbook details:
{ "request": { "filters": { "primaryCategory":"Digital Textbook", "leafNodes": {"contains": <<do_Id_content>>} }, "sort_by":{"name":"asc"} } }
So to get the information that you want, you need to use both the queries - Read Content API and Search API.
@vinukumar-vs @amitpriy…