Returns a set of data items of type folders.
GET /api/multimedias/folders
None
None
None.
Method can return success code: OK - 200 or one of these error codes: BadRequest - 400, NotFound - 404, NotImplemented - 501, InternalServerError - 500, Unauthorized - 401.
| Name | Description | Type | Additional Information |
| LastModified | System.DateTimeOffset | Read only: True | |
| UrlName | System.String | Read only: False | |
| Title | System.String | Read only: False | |
| Description | System.String | Read only: False | |
| RootId | System.Guid | Read only: False | |
| ParentId | System.Guid | Read only: False | |
| CoverId | System.Guid | Read only: False | |
| Provider | System.String | Read only: True | |
| ChildrenCount | System.Int32 | Read only: True | |
| Comments | Telerik.Sitefinity.Services.Comments.CommentContract | Read only: True | |
| Breadcrumb | Telerik.Sitefinity.Web.Services.Extensibility.BreadcrumbItem | Read only: True |
application/json
[
{
"LastModified": "2026-02-07T07:26:52.3019503Z",
"UrlName": "sample string 2",
"Title": "sample string 3",
"Description": "sample string 4",
"RootId": "331b4178-8894-4dcc-ba78-8ec02f5f53ba",
"ParentId": "8708db2f-7d70-46f8-b75c-ec0ad706990c",
"CoverId": "2cbcbf69-ccf7-4f99-be44-b2b3bd8dcefc",
"Provider": "sample string 8",
"ChildrenCount": 9,
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2026-02-07T07:26:52.3019503+00:00",
"ProfilePictureUrl": "sample string 4",
"ProfilePictureThumbnailUrl": "sample string 5"
},
"Breadcrumb": null
},
{
"LastModified": "2026-02-07T07:26:52.3019503Z",
"UrlName": "sample string 2",
"Title": "sample string 3",
"Description": "sample string 4",
"RootId": "331b4178-8894-4dcc-ba78-8ec02f5f53ba",
"ParentId": "8708db2f-7d70-46f8-b75c-ec0ad706990c",
"CoverId": "2cbcbf69-ccf7-4f99-be44-b2b3bd8dcefc",
"Provider": "sample string 8",
"ChildrenCount": 9,
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2026-02-07T07:26:52.3019503+00:00",
"ProfilePictureUrl": "sample string 4",
"ProfilePictureThumbnailUrl": "sample string 5"
},
"Breadcrumb": null
}
]Gets folders item by id.
GET /api/multimedias/folders({key})
| Name | Description | Type | Additional Information |
| key | System.Guid | Required |
None
None.
Method can return success code: OK - 200 or one of these error codes: BadRequest - 400, NotFound - 404, NotImplemented - 501, InternalServerError - 500, Unauthorized - 401.
| Name | Description | Type | Additional Information |
| LastModified | System.DateTimeOffset | Read only: True | |
| UrlName | System.String | Read only: False | |
| Title | System.String | Read only: False | |
| Description | System.String | Read only: False | |
| RootId | System.Guid | Read only: False | |
| ParentId | System.Guid | Read only: False | |
| CoverId | System.Guid | Read only: False | |
| Provider | System.String | Read only: True | |
| ChildrenCount | System.Int32 | Read only: True | |
| Comments | Telerik.Sitefinity.Services.Comments.CommentContract | Read only: True | |
| Breadcrumb | Telerik.Sitefinity.Web.Services.Extensibility.BreadcrumbItem | Read only: True |
application/json
{
"LastModified": "2026-02-07T07:26:52.3019503Z",
"UrlName": "sample string 2",
"Title": "sample string 3",
"Description": "sample string 4",
"RootId": "5dc1c28c-553e-48c3-9e12-f14ec3e19e01",
"ParentId": "2c1b183d-058d-4328-849a-af6b8ff0ccfc",
"CoverId": "ce7125b2-6ee2-457d-9cee-33a3470c7709",
"Provider": "sample string 8",
"ChildrenCount": 9,
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2026-02-07T07:26:52.3019503+00:00",
"ProfilePictureUrl": "sample string 4",
"ProfilePictureThumbnailUrl": "sample string 5"
},
"Breadcrumb": null
}Gets Id property from folders item.
GET /api/multimedias/folders({key})/property
| Name | Description | Type | Additional Information |
| key | System.Guid | Required | |
| property | System.String | Required |
None
None.
Method can return success code: OK - 200 or one of these error codes: BadRequest - 400, NotFound - 404, NotImplemented - 501, InternalServerError - 500, Unauthorized - 401.
| Name | Description | Type | Additional Information |
| Id | System.Guid | Read only: False |
application/json
{
"Id": "f7263294-a004-4069-a309-db65fef18b17"
}Creates a folders item.
POST /api/multimedias/folders
None
| Name | Description | Type | Additional Information |
| LastModified | System.DateTimeOffset | Read only: True | |
| UrlName | System.String | Read only: False | |
| Title | System.String | Read only: False | |
| Description | System.String | Read only: False | |
| RootId | System.Guid | Read only: False | |
| ParentId | System.Guid | Read only: False | |
| CoverId | System.Guid | Read only: False | |
| Provider | System.String | Read only: True | |
| ChildrenCount | System.Int32 | Read only: True | |
| Comments | Telerik.Sitefinity.Services.Comments.CommentContract | Read only: True | |
| Breadcrumb | Telerik.Sitefinity.Web.Services.Extensibility.BreadcrumbItem | Read only: True |
application/json
{
"UrlName": "sample string 1",
"Title": "sample string 2",
"Description": "sample string 3",
"RootId": "6d6c22d8-a1a8-4ef0-ae46-5b1ad5bdad5b",
"ParentId": "0091281e-613c-421c-84d0-ae8c67cfac06",
"CoverId": "f68a6f17-39bd-461d-85b5-79913b7750bf"
}Method can return success code: Created - 201 or one of these error codes: BadRequest - 400, NotFound - 404, NotImplemented - 501, InternalServerError - 500, Unauthorized - 401.
| Name | Description | Type | Additional Information |
| LastModified | System.DateTimeOffset | Read only: True | |
| UrlName | System.String | Read only: False | |
| Title | System.String | Read only: False | |
| Description | System.String | Read only: False | |
| RootId | System.Guid | Read only: False | |
| ParentId | System.Guid | Read only: False | |
| CoverId | System.Guid | Read only: False | |
| Provider | System.String | Read only: True | |
| ChildrenCount | System.Int32 | Read only: True | |
| Comments | Telerik.Sitefinity.Services.Comments.CommentContract | Read only: True | |
| Breadcrumb | Telerik.Sitefinity.Web.Services.Extensibility.BreadcrumbItem | Read only: True |
application/json
{
"LastModified": "2026-02-07T07:26:52.3019503Z",
"UrlName": "sample string 2",
"Title": "sample string 3",
"Description": "sample string 4",
"RootId": "a039e6f7-723b-4010-a8f7-153bf7085f9d",
"ParentId": "6c486e3c-9944-407c-9ec2-a898102913e3",
"CoverId": "a9e8784d-3ca5-4779-896e-fe8aa7c288f2",
"Provider": "sample string 8",
"ChildrenCount": 9,
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2026-02-07T07:26:52.3019503+00:00",
"ProfilePictureUrl": "sample string 4",
"ProfilePictureThumbnailUrl": "sample string 5"
},
"Breadcrumb": null
}Partial update for folders item.
PATCH /api/multimedias/folders({key})
| Name | Description | Type | Additional Information |
| key | System.Guid | Required |
| Name | Description | Type | Additional Information |
| LastModified | System.DateTimeOffset | Read only: True | |
| UrlName | System.String | Read only: False | |
| Title | System.String | Read only: False | |
| Description | System.String | Read only: False | |
| RootId | System.Guid | Read only: False | |
| ParentId | System.Guid | Read only: False | |
| CoverId | System.Guid | Read only: False | |
| Provider | System.String | Read only: True | |
| ChildrenCount | System.Int32 | Read only: True | |
| Comments | Telerik.Sitefinity.Services.Comments.CommentContract | Read only: True | |
| Breadcrumb | Telerik.Sitefinity.Web.Services.Extensibility.BreadcrumbItem | Read only: True |
application/json
{
"UrlName": "sample string 1",
"Title": "sample string 2",
"Description": "sample string 3",
"RootId": "72dd15ed-0359-47c1-a485-4692dd2d9dac",
"ParentId": "8b03f3f5-41ea-4fc7-8d8c-ae93ddd31182",
"CoverId": "0b823b54-ffed-44a9-a1cd-389a0292514b"
}Method can return success code: NoContent - 204 or one of these error codes: BadRequest - 400, NotFound - 404, NotImplemented - 501, InternalServerError - 500, Unauthorized - 401.
None.
Full update for folders item.
PUT /api/multimedias/folders({key})
| Name | Description | Type | Additional Information |
| key | System.Guid | Required |
| Name | Description | Type | Additional Information |
| LastModified | System.DateTimeOffset | Read only: True | |
| UrlName | System.String | Read only: False | |
| Title | System.String | Read only: False | |
| Description | System.String | Read only: False | |
| RootId | System.Guid | Read only: False | |
| ParentId | System.Guid | Read only: False | |
| CoverId | System.Guid | Read only: False | |
| Provider | System.String | Read only: True | |
| ChildrenCount | System.Int32 | Read only: True | |
| Comments | Telerik.Sitefinity.Services.Comments.CommentContract | Read only: True | |
| Breadcrumb | Telerik.Sitefinity.Web.Services.Extensibility.BreadcrumbItem | Read only: True |
application/json
{
"UrlName": "sample string 1",
"Title": "sample string 2",
"Description": "sample string 3",
"RootId": "1d01c1a1-e273-47dc-8db1-9e05e17265e7",
"ParentId": "985f0ed4-b1b5-4849-a97e-911cd1ac8d51",
"CoverId": "143ce4e5-3590-4d92-a896-5daad771d3a3"
}Method can return success code: NoContent - 204 or one of these error codes: BadRequest - 400, NotFound - 404, NotImplemented - 501, InternalServerError - 500, Unauthorized - 401.
None.
Deletes a folders item by Id.
DELETE /api/multimedias/folders({key})
| Name | Description | Type | Additional Information |
| key | System.Guid | Required |
None
None.
Method can return success code: NoContent - 204 or one of these error codes: BadRequest - 400, NotFound - 404, NotImplemented - 501, InternalServerError - 500, Unauthorized - 401.
None.