You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-[Metadata Blocks read use cases](#metadata-blocks-read-use-cases)
69
72
-[Get All Facetable Metadata Fields](#get-all-facetable-metadata-fields)
@@ -88,6 +91,11 @@ The different use cases currently available in the package are classified below,
88
91
-[Get Application Terms of Use](#get-application-terms-of-use)
89
92
-[Contact](#Contact)
90
93
-[Send Feedback to Object Contacts](#send-feedback-to-object-contacts)
94
+
-[Notifications](#Notifications)
95
+
-[Get All Notifications by User](#get-all-notifications-by-user)
96
+
-[Delete Notification](#delete-notification)
97
+
-[Get Unread Count](#get-unread-count)
98
+
-[Mark As Read](#mark-as-read)
91
99
-[Search](#Search)
92
100
-[Get Search Services](#get-search-services)
93
101
@@ -564,6 +572,37 @@ The `datasetId` parameter can be a string, for persistent identifiers, or a numb
564
572
565
573
There is an optional third parameter called `includeDeaccessioned`, which indicates whether to consider deaccessioned versions or not in the dataset search. If not set, the default value is `false`.
566
574
575
+
#### Get Dataset Citation In Other Formats
576
+
577
+
Retrieves the citation for a dataset in a specified bibliographic format.
Supported formats include 'EndNote' (XML), 'RIS' (plain text), 'BibTeX' (plain text), 'CSLJson' (JSON), and 'Internal' (HTML). The response contains the raw citation content in the requested format, the format type, and the content type (MIME type).
601
+
602
+
The `datasetId` parameter can be a string, for persistent identifiers, or a number, for numeric identifiers.
603
+
604
+
There is an optional third parameter called `includeDeaccessioned`, which indicates whether to consider deaccessioned versions or not in the dataset search. If not set, the default value is `false`.
605
+
567
606
#### Get Dataset Citation Text By Private URL Token
568
607
569
608
Returns the Dataset citation text, given an associated Private URL Token.
@@ -1049,6 +1088,28 @@ The `includeMDC` parameter is optional.
1049
1088
- If MDC isn't enabled, the download count will return a total count, without `MDCStartDate`.
1050
1089
- If MDC is enabled but the `includeMDC` is false, the count will be limited to the time before `MDCStartDate`
1051
1090
1091
+
#### Get Dataset Available Categories
1092
+
1093
+
Returns a list of available file categories that may be applied to the files of a given dataset.
Marks a specific notification as read for the current authenticated user. This operation is idempotent - marking an already-read notification as read will not cause an error.
* Returns a CollectionLinks object containing other collections this collection is linked to, the other collections linking to this collection, and datasets linked to this collection, given the collection identifier or alias.
14
+
*
15
+
* @param {number | string} [collectionIdOrAlias] - A generic collection identifier, which can be either a string (for queries by CollectionAlias), or a number (for queries by CollectionId)
16
+
* If this parameter is not set, the default value is: ':root'
* Creates a link between two collections. The linked collection will be linked to the linking collection.:
13
+
*
14
+
* @param {number| string} [linkedCollectionIdOrAlias] - The collection to be linked. Can be either a string (collection alias), or a number (collection id)
15
+
* @param { number | string} [linkingCollectionIdOrAlias] - The collection that will be linking to the linked collection. Can be either a string (collection alias), or a number (collection id)
16
+
* @returns {Promise<void>} -This method does not return anything upon successful completion.
* Unlinks a collection from the collection that links to it
13
+
*
14
+
* @param {number| string} [linkedCollectionIdOrAlias] - The collection that is linked. Can be either a string (collection alias), or a number (collection id)
15
+
* @param { number | string} [linkingCollectionIdOrAlias] - The collection that links to the linked collection. Can be either a string (collection alias), or a number (collection id)
16
+
* @returns {Promise<void>} -This method does not return anything upon successful completion.
0 commit comments