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-10-28T21:18:04.5337562Z",
"UrlName": "sample string 2",
"Title": "sample string 3",
"Description": "sample string 4",
"RootId": "bbc6db84-50a6-4d9e-b331-f349b1979a08",
"ParentId": "e1ea9fb0-cd5f-46ca-abd3-a9b5fcaab5e9",
"CoverId": "204ef921-b6db-4347-8f03-b163c0e1a8f4",
"Provider": "sample string 8",
"ChildrenCount": 9,
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2025-10-28T21:18:04.5337562+00:00",
"ProfilePictureUrl": "sample string 4",
"ProfilePictureThumbnailUrl": "sample string 5"
},
"Breadcrumb": null
},
{
"LastModified": "2025-10-28T21:18:04.5337562Z",
"UrlName": "sample string 2",
"Title": "sample string 3",
"Description": "sample string 4",
"RootId": "bbc6db84-50a6-4d9e-b331-f349b1979a08",
"ParentId": "e1ea9fb0-cd5f-46ca-abd3-a9b5fcaab5e9",
"CoverId": "204ef921-b6db-4347-8f03-b163c0e1a8f4",
"Provider": "sample string 8",
"ChildrenCount": 9,
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2025-10-28T21:18:04.5337562+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-10-28T21:18:04.5337562Z",
"UrlName": "sample string 2",
"Title": "sample string 3",
"Description": "sample string 4",
"RootId": "770a648e-8073-4186-b8ef-c96f81ca8e7f",
"ParentId": "97e0cece-2720-4438-bbc0-793010ed0583",
"CoverId": "6dcd0333-0557-40ff-a032-d8d210925c34",
"Provider": "sample string 8",
"ChildrenCount": 9,
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2025-10-28T21:18:04.5337562+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": "acfeac08-3d5f-48ec-ae29-9c0f09b20dd3"
}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": "036c7957-3be7-4e0f-9ebf-3db8aa8d2474",
"ParentId": "fd7a9b18-1f16-46b0-b5a1-85787942a077",
"CoverId": "93afc837-9c54-4343-afbb-4fa190cae4d0"
}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-10-28T21:18:04.5337562Z",
"UrlName": "sample string 2",
"Title": "sample string 3",
"Description": "sample string 4",
"RootId": "125a7a9f-a641-4b17-bf9e-cdca992b5529",
"ParentId": "4f196bb0-90a0-454a-b91a-55d189955f9a",
"CoverId": "11991c93-0d5d-43c9-9667-8bf217256378",
"Provider": "sample string 8",
"ChildrenCount": 9,
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2025-10-28T21:18:04.5337562+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": "21594c6d-9ac9-4c05-82d9-1c4d825cdcbd",
"ParentId": "10e7a786-9780-4213-aa93-9e683514434f",
"CoverId": "ec3029e8-333e-4e6e-bf35-e44cfd658b74"
}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": "b7cd4ecd-8986-4266-9828-5deb0c81eafe",
"ParentId": "1189608a-caf2-4e5a-a65e-1cb83e7d0f6f",
"CoverId": "f0ab3fb8-c887-49b9-90e3-0b24e3b39358"
}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.