Hi Dataverse team,
I'm working with a Dataverse instance and trying to list all datasets that are linked to a specific Dataverse collection — not the datasets deposited in it, but those linked using the dataset linking feature.
The API provides only the following related endpoints:
- Link a Dataset to a Dataverse: curl -H "X-Dataverse-key: $API_TOKEN" -X PUT $SERVER/api/datasets/$linked-dataset-id/link/$dataverse-alias
- List Dataverses Linked to a Dataset: curl -H "X-Dataverse-key: $API_TOKEN" $SERVER/api/datasets/$linked-dataset-id/links
How can I retrieve all datasets that are linked to a specific Dataverse collection?