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
NameDescriptionTypeAdditional 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": "2024-03-29T06:37:09.8600183+00:00"
  },
  {
    "Id": 1,
    "Name": "sample string 2",
    "Type": "EmailCampaign",
    "FolderId": 1,
    "LastModified": "2024-03-29T06:37:09.8600183+00:00"
  }
]