POST restapi/personal/yourfiles/private/files/v1?folderId={folderId}
Upload files to your private area
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
folderId |
The folder identifier to store the files |
integer |
Required |
Body Parameters
The files to upload
Collection of ObjectNone.
Request Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.
application/x-www-form-urlencoded
Sample:
No sample available
Response Information
Resource Description
List of uploaded files
Collection of Itslearning.RestApi.Entities.YourFiles.PrivateFileModelName | Description | Type | Additional information |
---|---|---|---|
Name |
The name of the file/folder |
string |
None. |
LastModified |
The date and time the file was last modified |
date |
None. |
LastModifiedString |
The date and time the file was last modified as string |
string |
None. |
FileType |
The type of file |
string |
None. |
FileSize |
The file size in Kb |
integer, 64 bit |
None. |
FileId |
The file identifier |
integer |
None. |
FileRepoId |
The file repository identifier |
globally unique identifier |
None. |
IsFolder |
If the item is folder |
boolean |
None. |
VirtualPath |
Virtual Path |
string |
None. |
Icon |
Icon for the item |
string |
None. |
Response Formats
application/json, text/json
Sample:
[ { "Name": "sample string 1", "LastModified": "2025-06-18T08:39:16Z", "LastModifiedString": "sample string 3", "FileType": "sample string 4", "FileSize": 5, "FileId": 6, "FileRepoId": "722cc0fd-1a5a-4a1f-a747-4f095c7f3c2b", "IsFolder": true, "VirtualPath": "sample string 9", "Icon": "sample string 10" }, { "Name": "sample string 1", "LastModified": "2025-06-18T08:39:16Z", "LastModifiedString": "sample string 3", "FileType": "sample string 4", "FileSize": 5, "FileId": 6, "FileRepoId": "e96467d1-2d28-44e1-ba45-8a057921e902", "IsFolder": true, "VirtualPath": "sample string 9", "Icon": "sample string 10" } ]
application/xml, text/xml
Sample:
<ArrayOfPrivateFileModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <PrivateFileModel> <FileId>6</FileId> <FileRepoId>722cc0fd-1a5a-4a1f-a747-4f095c7f3c2b</FileRepoId> <FileSize>5</FileSize> <FileType>sample string 4</FileType> <Icon>sample string 10</Icon> <IsFolder>true</IsFolder> <LastModified>2025-06-18T08:39:16Z</LastModified> <LastModifiedString>sample string 3</LastModifiedString> <Name>sample string 1</Name> <VirtualPath>sample string 9</VirtualPath> </PrivateFileModel> <PrivateFileModel> <FileId>6</FileId> <FileRepoId>e96467d1-2d28-44e1-ba45-8a057921e902</FileRepoId> <FileSize>5</FileSize> <FileType>sample string 4</FileType> <Icon>sample string 10</Icon> <IsFolder>true</IsFolder> <LastModified>2025-06-18T08:39:16Z</LastModified> <LastModifiedString>sample string 3</LastModifiedString> <Name>sample string 1</Name> <VirtualPath>sample string 9</VirtualPath> </PrivateFileModel> </ArrayOfPrivateFileModel>