GET objects/{id}/files?rpp={rpp}&page={page}
Gets the files of the specified object.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id |
The identifier of the object. |
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
GenericPaginatedListViewModelOfFileViewModelName | Description | Type | Additional information |
---|---|---|---|
TotalCount | integer |
None. |
|
Pagination | PaginationParameterModel |
None. |
|
Items | Collection of FileViewModel |
None. |
|
NextPageUrl | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "totalCount": 1, "pagination": null, "items": [ { "id": "sample string 1", "createdDate": "sample string 2", "size": 3, "fileHashCode": "sample string 4", "anonymizedFileHashCode": "sample string 5", "extension": "sample string 6", "originalFileName": "sample string 7", "downloadUrl": "sample string 8", "selfUrl": "sample string 9" }, { "id": "sample string 1", "createdDate": "sample string 2", "size": 3, "fileHashCode": "sample string 4", "anonymizedFileHashCode": "sample string 5", "extension": "sample string 6", "originalFileName": "sample string 7", "downloadUrl": "sample string 8", "selfUrl": "sample string 9" } ], "nextPageUrl": "sample string 2" }