GET restapi/personal/yourfiles/private/v1?path={path}&searchPhrase={searchPhrase}
Get courses for the current user
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
path |
The folder path |
string |
Default value is |
searchPhrase |
Optional. Get only the courses that matches the search phrase |
string |
Default value is |
Body Parameters
None.
Response Information
Resource Description
EntityList of courses
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-19T06:11:54Z", "LastModifiedString": "sample string 3", "FileType": "sample string 4", "FileSize": 5, "FileId": 6, "FileRepoId": "542eb515-48fe-4ebe-97c0-4bc75e4d5a99", "IsFolder": true, "VirtualPath": "sample string 9", "Icon": "sample string 10" }, { "Name": "sample string 1", "LastModified": "2025-06-19T06:11:54Z", "LastModifiedString": "sample string 3", "FileType": "sample string 4", "FileSize": 5, "FileId": 6, "FileRepoId": "174c36d1-def5-4802-8e92-762e1a7baa48", "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>542eb515-48fe-4ebe-97c0-4bc75e4d5a99</FileRepoId> <FileSize>5</FileSize> <FileType>sample string 4</FileType> <Icon>sample string 10</Icon> <IsFolder>true</IsFolder> <LastModified>2025-06-19T06:11:54Z</LastModified> <LastModifiedString>sample string 3</LastModifiedString> <Name>sample string 1</Name> <VirtualPath>sample string 9</VirtualPath> </PrivateFileModel> <PrivateFileModel> <FileId>6</FileId> <FileRepoId>174c36d1-def5-4802-8e92-762e1a7baa48</FileRepoId> <FileSize>5</FileSize> <FileType>sample string 4</FileType> <Icon>sample string 10</Icon> <IsFolder>true</IsFolder> <LastModified>2025-06-19T06:11:54Z</LastModified> <LastModifiedString>sample string 3</LastModifiedString> <Name>sample string 1</Name> <VirtualPath>sample string 9</VirtualPath> </PrivateFileModel> </ArrayOfPrivateFileModel>