Returns a set of data items of type partners.
GET /api/multimedias/partners
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 | |
PartnerURL | System.String | Read only: False | |
healthtopics | System.Guid | Read only: False | |
Provider | System.String | Read only: True | |
Comments | Telerik.Sitefinity.Services.Comments.CommentContract | Read only: True |
application/json
[
{
"LastModified": "2025-10-07T10:28:20.3440062Z",
"PublicationDate": "2025-10-07T10:28:20.3440062Z",
"DateCreated": "2025-10-07T10:28:20.3440062Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 5",
"UrlName": "sample string 6",
"ItemDefaultUrl": "sample string 7",
"Title": "sample string 8",
"PartnerURL": "sample string 9",
"healthtopics": "edb5342c-43ad-4d42-99bf-0f674b7e9dbc",
"Provider": "sample string 11",
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2025-10-07T10:28:20.3440062+00:00",
"ProfilePictureUrl": "sample string 4",
"ProfilePictureThumbnailUrl": "sample string 5"
}
},
{
"LastModified": "2025-10-07T10:28:20.3440062Z",
"PublicationDate": "2025-10-07T10:28:20.3440062Z",
"DateCreated": "2025-10-07T10:28:20.3440062Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 5",
"UrlName": "sample string 6",
"ItemDefaultUrl": "sample string 7",
"Title": "sample string 8",
"PartnerURL": "sample string 9",
"healthtopics": "edb5342c-43ad-4d42-99bf-0f674b7e9dbc",
"Provider": "sample string 11",
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2025-10-07T10:28:20.3440062+00:00",
"ProfilePictureUrl": "sample string 4",
"ProfilePictureThumbnailUrl": "sample string 5"
}
}
]
Gets partners item by id.
GET /api/multimedias/partners({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 | |
PartnerURL | System.String | Read only: False | |
healthtopics | System.Guid | Read only: False | |
Provider | System.String | Read only: True | |
Comments | Telerik.Sitefinity.Services.Comments.CommentContract | Read only: True |
application/json
{
"LastModified": "2025-10-07T10:28:20.3440062Z",
"PublicationDate": "2025-10-07T10:28:20.3440062Z",
"DateCreated": "2025-10-07T10:28:20.3440062Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 5",
"UrlName": "sample string 6",
"ItemDefaultUrl": "sample string 7",
"Title": "sample string 8",
"PartnerURL": "sample string 9",
"healthtopics": "0abbc5f6-a409-4ab0-9a67-6aabaedfc6e6",
"Provider": "sample string 11",
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2025-10-07T10:28:20.3440062+00:00",
"ProfilePictureUrl": "sample string 4",
"ProfilePictureThumbnailUrl": "sample string 5"
}
}
Gets Id property from partners item.
GET /api/multimedias/partners({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": "32045fd6-28cd-4a6c-bcc7-7350fec0fb9b"
}
Creates a partners item.
POST /api/multimedias/partners
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 | |
PartnerURL | System.String | Read only: False | |
healthtopics | System.Guid | Read only: False | |
Provider | System.String | Read only: True | |
Comments | Telerik.Sitefinity.Services.Comments.CommentContract | Read only: True |
application/json
{
"PublicationDate": "2025-10-07T10:28:20.3440062Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 3",
"UrlName": "sample string 4",
"Title": "sample string 5",
"PartnerURL": "sample string 6",
"healthtopics": "3fd43847-0b73-4740-a15e-557392a05a33"
}
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 | |
PartnerURL | System.String | Read only: False | |
healthtopics | System.Guid | Read only: False | |
Provider | System.String | Read only: True | |
Comments | Telerik.Sitefinity.Services.Comments.CommentContract | Read only: True |
application/json
{
"LastModified": "2025-10-07T10:28:20.3440062Z",
"PublicationDate": "2025-10-07T10:28:20.3440062Z",
"DateCreated": "2025-10-07T10:28:20.3440062Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 5",
"UrlName": "sample string 6",
"ItemDefaultUrl": "sample string 7",
"Title": "sample string 8",
"PartnerURL": "sample string 9",
"healthtopics": "202a0751-7367-46a6-9504-edb6bb69cd0f",
"Provider": "sample string 11",
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2025-10-07T10:28:20.3440062+00:00",
"ProfilePictureUrl": "sample string 4",
"ProfilePictureThumbnailUrl": "sample string 5"
}
}
Partial update for partners item.
PATCH /api/multimedias/partners({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 | |
PartnerURL | System.String | Read only: False | |
healthtopics | System.Guid | Read only: False | |
Provider | System.String | Read only: True | |
Comments | Telerik.Sitefinity.Services.Comments.CommentContract | Read only: True |
application/json
{
"PublicationDate": "2025-10-07T10:28:20.3440062Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 3",
"UrlName": "sample string 4",
"Title": "sample string 5",
"PartnerURL": "sample string 6",
"healthtopics": "e29d9b10-0d05-4038-8254-fb46d037fca3"
}
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 partners item.
PUT /api/multimedias/partners({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 | |
PartnerURL | System.String | Read only: False | |
healthtopics | System.Guid | Read only: False | |
Provider | System.String | Read only: True | |
Comments | Telerik.Sitefinity.Services.Comments.CommentContract | Read only: True |
application/json
{
"PublicationDate": "2025-10-07T10:28:20.3440062Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 3",
"UrlName": "sample string 4",
"Title": "sample string 5",
"PartnerURL": "sample string 6",
"healthtopics": "05d66034-18e0-470d-adc3-ad3ff68cad97"
}
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 partners item by Id.
DELETE /api/multimedias/partners({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 partners item.
GET /api/multimedias/partners({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-07T10:28:20.3440062Z",
"PublicationDate": "2025-10-07T10:28:20.3440062Z",
"Title": "sample string 3",
"Description": "sample string 4",
"DateCreated": "2025-10-07T10:28:20.3440062Z",
"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": "b1365168-2244-4855-9ee9-355a3a680a38",
"publishingoffices": "0dd55a01-e9e1-4b18-9545-a2303fa3c6ed",
"events": "98120439-f0ed-4010-81f4-56bc5ba785cf",
"targets": "952282bc-61f5-4078-b46b-0d7f623fbe71",
"Category": "140f25e0-dfe7-4235-a102-38173374c0da",
"imagetypes": "e7b94bb1-aa66-4014-b7e6-58a2a170095e",
"departmentaltargets": "7ba0b525-043b-4c7f-84cf-3dc1a81582c0",
"stakeholders": "969375c4-04a7-4e53-bceb-c3e9821894c6",
"Tags": "390ce5da-4a3e-4f35-9236-af2abbdf7810",
"healthtopics": "a485aa97-20a3-4bcf-ba67-19ed78ecb2a1",
"targetaudiences": "c109c398-1a9e-48ad-8c51-adbc5a3bfe6a",
"IsOptimized": true,
"OptImgStatus": "sample string 27",
"Width": 28,
"Height": 29,
"AlternativeText": "sample string 30",
"FolderId": "c143733c-2781-4d66-af7e-bf180c9654ff",
"ParentId": "1c6ceb8f-bc06-42a3-b14b-68c85909bc9b",
"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-07T10:28:20.3440062Z",
"PublicationDate": "2025-10-07T10:28:20.3440062Z",
"Title": "sample string 3",
"Description": "sample string 4",
"DateCreated": "2025-10-07T10:28:20.3440062Z",
"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": "b1365168-2244-4855-9ee9-355a3a680a38",
"publishingoffices": "0dd55a01-e9e1-4b18-9545-a2303fa3c6ed",
"events": "98120439-f0ed-4010-81f4-56bc5ba785cf",
"targets": "952282bc-61f5-4078-b46b-0d7f623fbe71",
"Category": "140f25e0-dfe7-4235-a102-38173374c0da",
"imagetypes": "e7b94bb1-aa66-4014-b7e6-58a2a170095e",
"departmentaltargets": "7ba0b525-043b-4c7f-84cf-3dc1a81582c0",
"stakeholders": "969375c4-04a7-4e53-bceb-c3e9821894c6",
"Tags": "390ce5da-4a3e-4f35-9236-af2abbdf7810",
"healthtopics": "a485aa97-20a3-4bcf-ba67-19ed78ecb2a1",
"targetaudiences": "c109c398-1a9e-48ad-8c51-adbc5a3bfe6a",
"IsOptimized": true,
"OptImgStatus": "sample string 27",
"Width": 28,
"Height": 29,
"AlternativeText": "sample string 30",
"FolderId": "c143733c-2781-4d66-af7e-bf180c9654ff",
"ParentId": "1c6ceb8f-bc06-42a3-b14b-68c85909bc9b",
"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 partners item.
POST /api/multimedias/partners({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 partners item.
DELETE /api/multimedias/partners({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.