GET folders/{id}/folder-objects?rpp={rpp}&page={page}
Gets the relations between objects and the specified folder.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id |
The identifier of the folder. |
integer |
Required |
rpp |
Results per page. |
integer |
Default value is 0 |
page |
Current page number. |
integer |
Default value is 0 |
Body Parameters
None.
Response Information
Resource Description
GenericPaginatedListViewModelOfFolderObjectViewModelName | Description | Type | Additional information |
---|---|---|---|
TotalCount | integer |
None. |
|
Pagination | PaginationParameterModel |
None. |
|
Items | Collection of FolderObjectViewModel |
None. |
|
NextPageUrl | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "totalCount": 1, "pagination": null, "items": [ { "id": "sample string 1", "folder": { "selfUrl": "sample string 1" }, "object": { "selfUrl": "sample string 1" }, "selfUrl": "sample string 2" }, { "id": "sample string 1", "folder": { "selfUrl": "sample string 1" }, "object": { "selfUrl": "sample string 1" }, "selfUrl": "sample string 2" } ], "nextPageUrl": "sample string 2" }