Returns a set of data items of type organizations.
GET /api/multimedias/organizations
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 | |
PublicationDate | System.DateTimeOffset | Read only: False | |
DateCreated | System.DateTimeOffset | Read only: True | |
IncludeInSitemap | System.Boolean | Read only: False | |
SystemSourceKey | System.String | Read only: False | |
UrlName | System.String | Read only: False | |
ItemDefaultUrl | System.String | Read only: True | |
healthtopics | System.Guid | Read only: False | |
WebsiteURL | System.String | Read only: False | |
Title | System.String | Read only: False | |
Provider | System.String | Read only: True | |
Comments | Telerik.Sitefinity.Services.Comments.CommentContract | Read only: True |
application/json
[
{
"LastModified": "2025-10-07T20:24:13.8575279Z",
"PublicationDate": "2025-10-07T20:24:13.8575279Z",
"DateCreated": "2025-10-07T20:24:13.8575279Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 5",
"UrlName": "sample string 6",
"ItemDefaultUrl": "sample string 7",
"healthtopics": "8b0ef5ff-55e8-4753-a1e1-d1a36279122f",
"WebsiteURL": "sample string 9",
"Title": "sample string 10",
"Provider": "sample string 11",
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2025-10-07T20:24:13.8575279+00:00",
"ProfilePictureUrl": "sample string 4",
"ProfilePictureThumbnailUrl": "sample string 5"
}
},
{
"LastModified": "2025-10-07T20:24:13.8575279Z",
"PublicationDate": "2025-10-07T20:24:13.8575279Z",
"DateCreated": "2025-10-07T20:24:13.8575279Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 5",
"UrlName": "sample string 6",
"ItemDefaultUrl": "sample string 7",
"healthtopics": "8b0ef5ff-55e8-4753-a1e1-d1a36279122f",
"WebsiteURL": "sample string 9",
"Title": "sample string 10",
"Provider": "sample string 11",
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2025-10-07T20:24:13.8575279+00:00",
"ProfilePictureUrl": "sample string 4",
"ProfilePictureThumbnailUrl": "sample string 5"
}
}
]
Gets organizations item by id.
GET /api/multimedias/organizations({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 | |
PublicationDate | System.DateTimeOffset | Read only: False | |
DateCreated | System.DateTimeOffset | Read only: True | |
IncludeInSitemap | System.Boolean | Read only: False | |
SystemSourceKey | System.String | Read only: False | |
UrlName | System.String | Read only: False | |
ItemDefaultUrl | System.String | Read only: True | |
healthtopics | System.Guid | Read only: False | |
WebsiteURL | System.String | Read only: False | |
Title | System.String | Read only: False | |
Provider | System.String | Read only: True | |
Comments | Telerik.Sitefinity.Services.Comments.CommentContract | Read only: True |
application/json
{
"LastModified": "2025-10-07T20:24:13.8575279Z",
"PublicationDate": "2025-10-07T20:24:13.8575279Z",
"DateCreated": "2025-10-07T20:24:13.8575279Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 5",
"UrlName": "sample string 6",
"ItemDefaultUrl": "sample string 7",
"healthtopics": "852fa630-26a8-49bd-8d1f-983df44de327",
"WebsiteURL": "sample string 9",
"Title": "sample string 10",
"Provider": "sample string 11",
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2025-10-07T20:24:13.8575279+00:00",
"ProfilePictureUrl": "sample string 4",
"ProfilePictureThumbnailUrl": "sample string 5"
}
}
Gets Id property from organizations item.
GET /api/multimedias/organizations({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": "b49bdcc2-3838-4214-aede-d3049d669563"
}
Creates a organizations item.
POST /api/multimedias/organizations
None
Name | Description | Type | Additional Information |
LastModified | System.DateTimeOffset | Read only: True | |
PublicationDate | System.DateTimeOffset | Read only: False | |
DateCreated | System.DateTimeOffset | Read only: True | |
IncludeInSitemap | System.Boolean | Read only: False | |
SystemSourceKey | System.String | Read only: False | |
UrlName | System.String | Read only: False | |
ItemDefaultUrl | System.String | Read only: True | |
healthtopics | System.Guid | Read only: False | |
WebsiteURL | System.String | Read only: False | |
Title | System.String | Read only: False | |
Provider | System.String | Read only: True | |
Comments | Telerik.Sitefinity.Services.Comments.CommentContract | Read only: True |
application/json
{
"PublicationDate": "2025-10-07T20:24:13.8575279Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 3",
"UrlName": "sample string 4",
"healthtopics": "7089e4b6-6e5d-4ab5-9f00-1bc2f4cbbd73",
"WebsiteURL": "sample string 6",
"Title": "sample string 7"
}
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 | |
PublicationDate | System.DateTimeOffset | Read only: False | |
DateCreated | System.DateTimeOffset | Read only: True | |
IncludeInSitemap | System.Boolean | Read only: False | |
SystemSourceKey | System.String | Read only: False | |
UrlName | System.String | Read only: False | |
ItemDefaultUrl | System.String | Read only: True | |
healthtopics | System.Guid | Read only: False | |
WebsiteURL | System.String | Read only: False | |
Title | System.String | Read only: False | |
Provider | System.String | Read only: True | |
Comments | Telerik.Sitefinity.Services.Comments.CommentContract | Read only: True |
application/json
{
"LastModified": "2025-10-07T20:24:13.8575279Z",
"PublicationDate": "2025-10-07T20:24:13.8575279Z",
"DateCreated": "2025-10-07T20:24:13.8575279Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 5",
"UrlName": "sample string 6",
"ItemDefaultUrl": "sample string 7",
"healthtopics": "dba9864e-fec3-4e9c-b660-ba37792173bd",
"WebsiteURL": "sample string 9",
"Title": "sample string 10",
"Provider": "sample string 11",
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2025-10-07T20:24:13.8575279+00:00",
"ProfilePictureUrl": "sample string 4",
"ProfilePictureThumbnailUrl": "sample string 5"
}
}
Partial update for organizations item.
PATCH /api/multimedias/organizations({key})
Name | Description | Type | Additional Information |
key | System.Guid | Required |
Name | Description | Type | Additional Information |
LastModified | System.DateTimeOffset | Read only: True | |
PublicationDate | System.DateTimeOffset | Read only: False | |
DateCreated | System.DateTimeOffset | Read only: True | |
IncludeInSitemap | System.Boolean | Read only: False | |
SystemSourceKey | System.String | Read only: False | |
UrlName | System.String | Read only: False | |
ItemDefaultUrl | System.String | Read only: True | |
healthtopics | System.Guid | Read only: False | |
WebsiteURL | System.String | Read only: False | |
Title | System.String | Read only: False | |
Provider | System.String | Read only: True | |
Comments | Telerik.Sitefinity.Services.Comments.CommentContract | Read only: True |
application/json
{
"PublicationDate": "2025-10-07T20:24:13.8575279Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 3",
"UrlName": "sample string 4",
"healthtopics": "485936d7-0d34-4660-8c08-2eb31170300a",
"WebsiteURL": "sample string 6",
"Title": "sample string 7"
}
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 organizations item.
PUT /api/multimedias/organizations({key})
Name | Description | Type | Additional Information |
key | System.Guid | Required |
Name | Description | Type | Additional Information |
LastModified | System.DateTimeOffset | Read only: True | |
PublicationDate | System.DateTimeOffset | Read only: False | |
DateCreated | System.DateTimeOffset | Read only: True | |
IncludeInSitemap | System.Boolean | Read only: False | |
SystemSourceKey | System.String | Read only: False | |
UrlName | System.String | Read only: False | |
ItemDefaultUrl | System.String | Read only: True | |
healthtopics | System.Guid | Read only: False | |
WebsiteURL | System.String | Read only: False | |
Title | System.String | Read only: False | |
Provider | System.String | Read only: True | |
Comments | Telerik.Sitefinity.Services.Comments.CommentContract | Read only: True |
application/json
{
"PublicationDate": "2025-10-07T20:24:13.8575279Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 3",
"UrlName": "sample string 4",
"healthtopics": "5b22e309-ffe6-4193-8036-82dc5ca8aadf",
"WebsiteURL": "sample string 6",
"Title": "sample string 7"
}
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 organizations item by Id.
DELETE /api/multimedias/organizations({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.
Returns a set of related items of type Thumbnail from organizations item.
GET /api/multimedias/organizations({key})/Thumbnail
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 | |
PublicationDate | System.DateTimeOffset | Read only: False | |
Title | System.String | Read only: False | |
Description | System.String | Read only: False | |
DateCreated | System.DateTimeOffset | Read only: True | |
IncludeInSitemap | System.Boolean | Read only: False | |
SystemSourceKey | System.String | Read only: False | |
Ordinal | System.Single | Read only: False | |
UrlName | System.String | Read only: False | |
ItemDefaultUrl | System.String | Read only: True | |
Author | System.String | Read only: False | |
Extension | System.String | Read only: True | |
MimeType | System.String | Read only: True | |
TotalSize | System.Int64 | Read only: True | |
regionscountries | System.Guid | Read only: False | |
publishingoffices | System.Guid | Read only: False | |
events | System.Guid | Read only: False | |
targets | System.Guid | Read only: False | |
Category | System.Guid | Read only: False | |
imagetypes | System.Guid | Read only: False | |
departmentaltargets | System.Guid | Read only: False | |
stakeholders | System.Guid | Read only: False | |
Tags | System.Guid | Read only: False | |
healthtopics | System.Guid | Read only: False | |
targetaudiences | System.Guid | Read only: False | |
IsOptimized | System.Boolean | Read only: False | |
OptImgStatus | System.String | Read only: False | |
Width | System.Int32 | Read only: True | |
Height | System.Int32 | Read only: True | |
AlternativeText | System.String | Read only: False | |
FolderId | System.Guid | Read only: False | |
ParentId | System.Guid | Read only: False | |
Provider | System.String | Read only: True | |
Url | System.String | Read only: True | |
ThumbnailUrl | System.String | Read only: True | |
Thumbnails | Telerik.Sitefinity.Modules.Libraries.Web.Services.Extensibility.ThumbnailModel | Read only: True | |
IsDamMedia | System.Boolean | Read only: True |
application/json
[
{
"LastModified": "2025-10-07T20:24:13.8575279Z",
"PublicationDate": "2025-10-07T20:24:13.8575279Z",
"Title": "sample string 3",
"Description": "sample string 4",
"DateCreated": "2025-10-07T20:24:13.8575279Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 7",
"Ordinal": 8.1,
"UrlName": "sample string 9",
"ItemDefaultUrl": "sample string 10",
"Author": "sample string 11",
"Extension": "sample string 12",
"MimeType": "sample string 13",
"TotalSize": 14,
"regionscountries": "af20b246-ed36-49bc-bb0a-0c5e6029dfcd",
"publishingoffices": "74f45e80-0935-494a-9551-3402cfdd10af",
"events": "3b1d5843-ec43-4471-8e85-4febd8a59c52",
"targets": "6fe346a2-4593-4b8b-be15-6b0cf5a9b7eb",
"Category": "d194e3ac-cf2a-422e-9a12-c257b347f8a4",
"imagetypes": "4bca0f72-ba75-42c3-9a59-ccc705ca3ef9",
"departmentaltargets": "ea05d0d9-91c8-4509-b7fb-58ec05451280",
"stakeholders": "a47159ec-e9f4-46b7-a298-6638f2ffc4fb",
"Tags": "06c4bf4a-ce3c-4a2b-b381-d33e2642adda",
"healthtopics": "077ba973-05e7-4004-b0eb-27b2a5c2d1de",
"targetaudiences": "7161661c-90e2-4fd1-827b-3d92ec462991",
"IsOptimized": true,
"OptImgStatus": "sample string 27",
"Width": 28,
"Height": 29,
"AlternativeText": "sample string 30",
"FolderId": "ad122d4c-4f67-424e-bf0a-781f46eb8270",
"ParentId": "24ebf784-7f7a-4113-86c3-65dfd1a6cf27",
"Provider": "sample string 33",
"Url": "sample string 34",
"ThumbnailUrl": "sample string 35",
"Thumbnails": {
"Title": "sample string 1",
"Url": "sample string 2",
"Width": 3,
"Height": 4,
"MimeType": "sample string 5"
},
"IsDamMedia": true
},
{
"LastModified": "2025-10-07T20:24:13.8575279Z",
"PublicationDate": "2025-10-07T20:24:13.8575279Z",
"Title": "sample string 3",
"Description": "sample string 4",
"DateCreated": "2025-10-07T20:24:13.8575279Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 7",
"Ordinal": 8.1,
"UrlName": "sample string 9",
"ItemDefaultUrl": "sample string 10",
"Author": "sample string 11",
"Extension": "sample string 12",
"MimeType": "sample string 13",
"TotalSize": 14,
"regionscountries": "af20b246-ed36-49bc-bb0a-0c5e6029dfcd",
"publishingoffices": "74f45e80-0935-494a-9551-3402cfdd10af",
"events": "3b1d5843-ec43-4471-8e85-4febd8a59c52",
"targets": "6fe346a2-4593-4b8b-be15-6b0cf5a9b7eb",
"Category": "d194e3ac-cf2a-422e-9a12-c257b347f8a4",
"imagetypes": "4bca0f72-ba75-42c3-9a59-ccc705ca3ef9",
"departmentaltargets": "ea05d0d9-91c8-4509-b7fb-58ec05451280",
"stakeholders": "a47159ec-e9f4-46b7-a298-6638f2ffc4fb",
"Tags": "06c4bf4a-ce3c-4a2b-b381-d33e2642adda",
"healthtopics": "077ba973-05e7-4004-b0eb-27b2a5c2d1de",
"targetaudiences": "7161661c-90e2-4fd1-827b-3d92ec462991",
"IsOptimized": true,
"OptImgStatus": "sample string 27",
"Width": 28,
"Height": 29,
"AlternativeText": "sample string 30",
"FolderId": "ad122d4c-4f67-424e-bf0a-781f46eb8270",
"ParentId": "24ebf784-7f7a-4113-86c3-65dfd1a6cf27",
"Provider": "sample string 33",
"Url": "sample string 34",
"ThumbnailUrl": "sample string 35",
"Thumbnails": {
"Title": "sample string 1",
"Url": "sample string 2",
"Width": 3,
"Height": 4,
"MimeType": "sample string 5"
},
"IsDamMedia": true
}
]
Add Thumbnail relation to organizations item.
POST /api/multimedias/organizations({key})/Thumbnail/$ref
Name | Description | Type | Additional Information |
key | System.Guid | Required |
None
application/json
{
"@odata.id": "http://host/route/service/type(key)"
}
Method can return success code: NoContent - 204 or one of these error codes: BadRequest - 400, NotFound - 404, NotImplemented - 501, InternalServerError - 500, Unauthorized - 401.
None.
Delete set of related items of type Thumbnail from organizations item.
DELETE /api/multimedias/organizations({key})/Thumbnail/$ref
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.