action osf_collections_metadata_registrations_detail { label: "Retrieve Specific Metadata for a Collection" description: "\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/{cgm_id}" encoding: json input: { type: "object" properties: { cgm_id: { type: "string" } collection_id: { type: "string" } } required: ["cgm_id", "collection_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }