action osf_collections_detail { label: "Retrieve a Collection" description: "Retrieves a collection, if the user has appropriate permissions.\n\n#### Permissions\nAnonymous users are able to see all public collections at this endpoint. Logged in users will only be able to see their own content.\n#### Returns\nReturns a JSON object containing `data` and `links` keys.\n\nThe `links` key contains a dictionary of links that can be used for [pagination](#tag/Pagination)." provider: osf method: GET path: "/collections/{collection_id}/" encoding: json input: { type: "object" properties: { collection_id: { type: "string" } } required: ["collection_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }