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": "2025-12-10T00:20:16.3112644Z",
"UrlName": "sample string 2",
"Title": "sample string 3",
"Description": "sample string 4",
"RootId": "07fb9ffb-882d-4989-b8e1-d28cf26aaee2",
"ParentId": "85f61661-18ac-41a9-9442-0cd3d079748e",
"CoverId": "3cb71b37-725b-4e37-af81-c9a0d4577a58",
"Provider": "sample string 8",
"ChildrenCount": 9,
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2025-12-10T00:20:16.3112644+00:00",
"ProfilePictureUrl": "sample string 4",
"ProfilePictureThumbnailUrl": "sample string 5"
},
"Breadcrumb": null
},
{
"LastModified": "2025-12-10T00:20:16.3112644Z",
"UrlName": "sample string 2",
"Title": "sample string 3",
"Description": "sample string 4",
"RootId": "07fb9ffb-882d-4989-b8e1-d28cf26aaee2",
"ParentId": "85f61661-18ac-41a9-9442-0cd3d079748e",
"CoverId": "3cb71b37-725b-4e37-af81-c9a0d4577a58",
"Provider": "sample string 8",
"ChildrenCount": 9,
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2025-12-10T00:20:16.3112644+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": "2025-12-10T00:20:16.3112644Z",
"UrlName": "sample string 2",
"Title": "sample string 3",
"Description": "sample string 4",
"RootId": "2b12acc1-c9ca-4a09-a71e-b5234e92fd35",
"ParentId": "cea201f2-3b03-46f1-96af-d5e02ecb6727",
"CoverId": "dec3da6a-7bb2-4be4-aaa8-92f2f8104b37",
"Provider": "sample string 8",
"ChildrenCount": 9,
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2025-12-10T00:20:16.3112644+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": "0bf3b81e-394b-48af-bb99-21468b68eefd"
}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": "b804d3e8-84df-4a5a-88bb-0862242f382b",
"ParentId": "1ab58e85-fc3d-470e-9fa8-5eb30e10d8f5",
"CoverId": "41a8c798-be4c-41dc-912c-12ef47042435"
}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": "2025-12-10T00:20:16.3112644Z",
"UrlName": "sample string 2",
"Title": "sample string 3",
"Description": "sample string 4",
"RootId": "6e23341c-8919-42ff-a2f8-0775e772c1a4",
"ParentId": "37f65c72-a002-492f-9e5a-9b7a4e30183c",
"CoverId": "41a6cd9d-f6cb-433e-9e83-4f265178ca2d",
"Provider": "sample string 8",
"ChildrenCount": 9,
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2025-12-10T00:20:16.3112644+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": "fd99a0df-655f-4631-8d6c-e7dd16b8c7ef",
"ParentId": "82b0b6ab-2503-4eb1-b0ae-38304ebd2912",
"CoverId": "912b1bae-a713-4f1c-84eb-3751775f507f"
}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": "72485220-482a-441a-be3a-6209ee4ca822",
"ParentId": "1894cd68-5317-48e0-a684-16b06bc7c663",
"CoverId": "61825685-d981-465e-ab94-a024ed85ac4a"
}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.