Returns a set of data items of type donors.
GET /api/multimedias/donors
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 | |
Title | System.String | Read only: False | |
healthtopics | System.Guid | Read only: False | |
DonorUrl | 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-07T11:47:31.3898999Z",
"PublicationDate": "2025-10-07T11:47:31.3898999Z",
"DateCreated": "2025-10-07T11:47:31.3898999Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 5",
"UrlName": "sample string 6",
"ItemDefaultUrl": "sample string 7",
"Title": "sample string 8",
"healthtopics": "d5f68888-e785-48ac-b10e-af095a9f22fc",
"DonorUrl": "sample string 10",
"Provider": "sample string 11",
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2025-10-07T11:47:31.3898999+00:00",
"ProfilePictureUrl": "sample string 4",
"ProfilePictureThumbnailUrl": "sample string 5"
}
},
{
"LastModified": "2025-10-07T11:47:31.3898999Z",
"PublicationDate": "2025-10-07T11:47:31.3898999Z",
"DateCreated": "2025-10-07T11:47:31.3898999Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 5",
"UrlName": "sample string 6",
"ItemDefaultUrl": "sample string 7",
"Title": "sample string 8",
"healthtopics": "d5f68888-e785-48ac-b10e-af095a9f22fc",
"DonorUrl": "sample string 10",
"Provider": "sample string 11",
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2025-10-07T11:47:31.3898999+00:00",
"ProfilePictureUrl": "sample string 4",
"ProfilePictureThumbnailUrl": "sample string 5"
}
}
]
Gets donors item by id.
GET /api/multimedias/donors({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 | |
Title | System.String | Read only: False | |
healthtopics | System.Guid | Read only: False | |
DonorUrl | 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-07T11:47:31.3898999Z",
"PublicationDate": "2025-10-07T11:47:31.3898999Z",
"DateCreated": "2025-10-07T11:47:31.3898999Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 5",
"UrlName": "sample string 6",
"ItemDefaultUrl": "sample string 7",
"Title": "sample string 8",
"healthtopics": "b0fab0ea-f48a-40d2-811c-79ada7c2c4e0",
"DonorUrl": "sample string 10",
"Provider": "sample string 11",
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2025-10-07T11:47:31.3898999+00:00",
"ProfilePictureUrl": "sample string 4",
"ProfilePictureThumbnailUrl": "sample string 5"
}
}
Gets Id property from donors item.
GET /api/multimedias/donors({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": "35f2fb2c-437a-44de-9512-43884d83435e"
}
Creates a donors item.
POST /api/multimedias/donors
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 | |
Title | System.String | Read only: False | |
healthtopics | System.Guid | Read only: False | |
DonorUrl | 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-07T11:47:31.3898999Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 3",
"UrlName": "sample string 4",
"Title": "sample string 5",
"healthtopics": "7725039a-045a-4a5a-9bf0-c341b341c29a",
"DonorUrl": "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 | |
Title | System.String | Read only: False | |
healthtopics | System.Guid | Read only: False | |
DonorUrl | 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-07T11:47:31.3898999Z",
"PublicationDate": "2025-10-07T11:47:31.3898999Z",
"DateCreated": "2025-10-07T11:47:31.3898999Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 5",
"UrlName": "sample string 6",
"ItemDefaultUrl": "sample string 7",
"Title": "sample string 8",
"healthtopics": "33b6ce6f-6799-49d9-a7f9-494c229eb2c1",
"DonorUrl": "sample string 10",
"Provider": "sample string 11",
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2025-10-07T11:47:31.3898999+00:00",
"ProfilePictureUrl": "sample string 4",
"ProfilePictureThumbnailUrl": "sample string 5"
}
}
Partial update for donors item.
PATCH /api/multimedias/donors({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 | |
Title | System.String | Read only: False | |
healthtopics | System.Guid | Read only: False | |
DonorUrl | 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-07T11:47:31.3898999Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 3",
"UrlName": "sample string 4",
"Title": "sample string 5",
"healthtopics": "7c730de2-92cb-49cc-ad7a-23164cad1bbd",
"DonorUrl": "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 donors item.
PUT /api/multimedias/donors({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 | |
Title | System.String | Read only: False | |
healthtopics | System.Guid | Read only: False | |
DonorUrl | 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-07T11:47:31.3898999Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 3",
"UrlName": "sample string 4",
"Title": "sample string 5",
"healthtopics": "ab63af6c-e77c-4e07-a729-8c79430f627f",
"DonorUrl": "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 donors item by Id.
DELETE /api/multimedias/donors({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 donors item.
GET /api/multimedias/donors({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-07T11:47:31.3898999Z",
"PublicationDate": "2025-10-07T11:47:31.3898999Z",
"Title": "sample string 3",
"Description": "sample string 4",
"DateCreated": "2025-10-07T11:47:31.3898999Z",
"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": "36c920d9-4211-4483-8a63-11d8fd485a82",
"publishingoffices": "a86462cf-5606-4cbd-b1b6-215a5e899179",
"events": "01fdaa06-30c2-4f39-937c-c812474d5da3",
"targets": "d19d447e-19d4-4485-9deb-bf74d765d679",
"Category": "e2428ab3-e745-48ec-8b9a-f347f9ec752d",
"imagetypes": "13e5af7c-1238-40bd-9614-c6c95de94f33",
"departmentaltargets": "4e289f7b-8b5f-4970-918a-e8bd1f988727",
"stakeholders": "7f799533-a465-44ee-a621-c6ec2a020536",
"Tags": "e09d9692-f77f-41ab-b0f0-1c78616c8281",
"healthtopics": "413829eb-9732-4e10-80f7-e3fed6e4b059",
"targetaudiences": "0cd35a9b-6de4-4797-bbc2-967817c06942",
"IsOptimized": true,
"OptImgStatus": "sample string 27",
"Width": 28,
"Height": 29,
"AlternativeText": "sample string 30",
"FolderId": "85fe1585-c3f9-4e29-8a28-071226fa1b7a",
"ParentId": "a7fccb6b-2394-489d-8acc-0aeda1d859ad",
"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-07T11:47:31.3898999Z",
"PublicationDate": "2025-10-07T11:47:31.3898999Z",
"Title": "sample string 3",
"Description": "sample string 4",
"DateCreated": "2025-10-07T11:47:31.3898999Z",
"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": "36c920d9-4211-4483-8a63-11d8fd485a82",
"publishingoffices": "a86462cf-5606-4cbd-b1b6-215a5e899179",
"events": "01fdaa06-30c2-4f39-937c-c812474d5da3",
"targets": "d19d447e-19d4-4485-9deb-bf74d765d679",
"Category": "e2428ab3-e745-48ec-8b9a-f347f9ec752d",
"imagetypes": "13e5af7c-1238-40bd-9614-c6c95de94f33",
"departmentaltargets": "4e289f7b-8b5f-4970-918a-e8bd1f988727",
"stakeholders": "7f799533-a465-44ee-a621-c6ec2a020536",
"Tags": "e09d9692-f77f-41ab-b0f0-1c78616c8281",
"healthtopics": "413829eb-9732-4e10-80f7-e3fed6e4b059",
"targetaudiences": "0cd35a9b-6de4-4797-bbc2-967817c06942",
"IsOptimized": true,
"OptImgStatus": "sample string 27",
"Width": 28,
"Height": 29,
"AlternativeText": "sample string 30",
"FolderId": "85fe1585-c3f9-4e29-8a28-071226fa1b7a",
"ParentId": "a7fccb6b-2394-489d-8acc-0aeda1d859ad",
"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 donors item.
POST /api/multimedias/donors({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 donors item.
DELETE /api/multimedias/donors({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.