GET api/v1/Media/Folders
Returns a list of media folders
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of ReadFolderDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id |
Folder Id |
integer |
Required |
| Name |
Folder name |
string |
Required String length: inclusive between 1 and 255 |
| Type |
Folder type |
FolderType |
Required |
| FolderId |
If the folder is a subfolder - the Id of the parent folder |
integer |
None. |
| LastModified |
When the folder was last modified (Datetimeoffset) |
date |
Required |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"Name": "sample string 2",
"Type": "EmailCampaign",
"FolderId": 1,
"LastModified": "2025-11-03T21:35:38.0157764+01:00"
},
{
"Id": 1,
"Name": "sample string 2",
"Type": "EmailCampaign",
"FolderId": 1,
"LastModified": "2025-11-03T21:35:38.0157764+01:00"
}
]