action osf_collections_metadata_registrations_list { label: "Retrieve a list of collected metadata for a collection" description: "List of user created metadata for entities within a collection.\n#### Permissions\nIn order to view this metadata it must be public or a user must have read permissions for collection.\n#### Returns\nReturns a JSON object containing `data` and `links` keys.\n\nThe `data` key contains an array of nodes ids.\nThe `links` key contains a dictionary of links that can be used for [pagination](#tag/Pagination).\n#### Errors\nThis request should never return an error." provider: osf method: GET path: "/collections/{collection_id}/collected_metadata/" encoding: json input: { type: "object" properties: { collection_id: { type: "string" } } required: ["collection_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }