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-12T18:13:41.373604Z",
"UrlName": "sample string 2",
"Title": "sample string 3",
"Description": "sample string 4",
"RootId": "0f3687ec-c4b1-441b-986b-e187e890ce21",
"ParentId": "201e4752-6a2d-4b1a-8dca-474af61ba5a6",
"CoverId": "12f40e60-f862-48c1-98bd-0a00ab2652c0",
"Provider": "sample string 8",
"ChildrenCount": 9,
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2026-01-12T18:13:41.373604+00:00",
"ProfilePictureUrl": "sample string 4",
"ProfilePictureThumbnailUrl": "sample string 5"
},
"Breadcrumb": null
},
{
"LastModified": "2026-01-12T18:13:41.373604Z",
"UrlName": "sample string 2",
"Title": "sample string 3",
"Description": "sample string 4",
"RootId": "0f3687ec-c4b1-441b-986b-e187e890ce21",
"ParentId": "201e4752-6a2d-4b1a-8dca-474af61ba5a6",
"CoverId": "12f40e60-f862-48c1-98bd-0a00ab2652c0",
"Provider": "sample string 8",
"ChildrenCount": 9,
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2026-01-12T18:13:41.373604+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-12T18:13:41.373604Z",
"UrlName": "sample string 2",
"Title": "sample string 3",
"Description": "sample string 4",
"RootId": "b121d22e-d913-417d-9b3d-fc5787f221c2",
"ParentId": "a02fd0d3-2b80-41ae-89f3-fa5f28b1d9a0",
"CoverId": "276f5146-79ff-4f01-a2ba-9649542ffdd6",
"Provider": "sample string 8",
"ChildrenCount": 9,
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2026-01-12T18:13:41.373604+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": "13409a14-aaf5-40fd-a422-12e660ab33ec"
}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": "f4bd2880-f218-430e-8e5e-d28fc5728aa5",
"ParentId": "8b486460-b638-4996-888d-5a78131e6986",
"CoverId": "a1bad082-45b1-48ca-bc83-35906e5f2a4d"
}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-12T18:13:41.373604Z",
"UrlName": "sample string 2",
"Title": "sample string 3",
"Description": "sample string 4",
"RootId": "527f2c3c-0c70-4b78-b784-081c12b95c8e",
"ParentId": "490011e6-7a6f-4e59-9d5d-1e278c6d20b1",
"CoverId": "49509f4e-b5c7-4158-82b8-05a10067196e",
"Provider": "sample string 8",
"ChildrenCount": 9,
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2026-01-12T18:13:41.373604+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": "e0597e59-0a18-4a7f-886e-baa9bca4f9e1",
"ParentId": "feea4f92-33db-47a4-9c4b-fa8cf16dad4b",
"CoverId": "890423e1-67fc-4c59-899d-01853a84652f"
}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": "9d63334b-52b4-409f-a02e-f2a0d5fc6596",
"ParentId": "c6059499-a6d7-4f1f-acce-8bc059f4b8ae",
"CoverId": "ed1a7bd5-7e0f-48aa-8378-fcfe6d13ddb6"
}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.