Get data collections shared with my organization

Returns list of data collections shared with your organization.

GET /my-organization/group-content-data-collection-resources

Parameters

Parameter
Description
Optional
Default value

page

Result page

Yes

1

per_page

Number of data collections per page

Yes

25

Response

The endpoint returns a paginated list of DataCollection objects:

{
    "data": {
        "results": [ <DataCollection> ],
        "paging": {
            "page": <int>,
            "per_page": <int>,
            "total_count": <int>,
        }
    }
}

Example

Last updated