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-01-14T12:23:45.208649Z",
"UrlName": "sample string 2",
"Title": "sample string 3",
"Description": "sample string 4",
"RootId": "a7eb7f24-1433-453a-9b30-cfb144f7ce21",
"ParentId": "a6e152d8-d80b-40d4-8bb9-2b3f39e6d832",
"CoverId": "521f0f2f-7a08-417c-85aa-fd3c984e0527",
"Provider": "sample string 8",
"ChildrenCount": 9,
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2026-01-14T12:23:45.208649+00:00",
"ProfilePictureUrl": "sample string 4",
"ProfilePictureThumbnailUrl": "sample string 5"
},
"Breadcrumb": null
},
{
"LastModified": "2026-01-14T12:23:45.208649Z",
"UrlName": "sample string 2",
"Title": "sample string 3",
"Description": "sample string 4",
"RootId": "a7eb7f24-1433-453a-9b30-cfb144f7ce21",
"ParentId": "a6e152d8-d80b-40d4-8bb9-2b3f39e6d832",
"CoverId": "521f0f2f-7a08-417c-85aa-fd3c984e0527",
"Provider": "sample string 8",
"ChildrenCount": 9,
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2026-01-14T12:23:45.208649+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-01-14T12:23:45.208649Z",
"UrlName": "sample string 2",
"Title": "sample string 3",
"Description": "sample string 4",
"RootId": "f9c8fe22-1366-4a3a-9aea-d7752aed19a1",
"ParentId": "1c032074-be40-4254-8479-2686929e2249",
"CoverId": "80fc3972-cf4e-4021-bae3-644acdb40ca8",
"Provider": "sample string 8",
"ChildrenCount": 9,
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2026-01-14T12:23:45.208649+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": "ae412e1c-07c8-4ba2-ad21-d33f6cd38b05"
}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": "3ed6fc8b-22c0-4236-8975-c9149d75c952",
"ParentId": "80832402-5534-4c11-9d41-1d575993e7fa",
"CoverId": "8c6a47e0-2717-47c7-b027-acbd6a360c01"
}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-01-14T12:23:45.208649Z",
"UrlName": "sample string 2",
"Title": "sample string 3",
"Description": "sample string 4",
"RootId": "c4249ea0-c032-4776-be60-88b0b4b358cc",
"ParentId": "7b00fc67-9b6b-49ff-bb02-a4e100a812e8",
"CoverId": "550ce3c7-b3b8-48f0-aaef-53c987aa5ca3",
"Provider": "sample string 8",
"ChildrenCount": 9,
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2026-01-14T12:23:45.208649+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": "757e9f27-ba84-415a-bde2-c2403c44c3e4",
"ParentId": "4838c680-23a2-4ecd-8464-8f51c6b95b33",
"CoverId": "c78b0dff-0b92-47ca-be0e-e423c341ee23"
}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": "274e6a0c-f73f-496f-8144-700a45e906c4",
"ParentId": "e662d5a6-f890-458f-9dd0-10a8dd63cecd",
"CoverId": "da32f87b-911f-4af7-a27e-fab113db2953"
}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.