Returns a set of data items of type organizations.
GET /api/resultsreport/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-06T11:52:17.3792939Z",
"PublicationDate": "2025-10-06T11:52:17.3792939Z",
"DateCreated": "2025-10-06T11:52:17.3792939Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 5",
"UrlName": "sample string 6",
"ItemDefaultUrl": "sample string 7",
"healthtopics": "ccbb3a11-c346-4acd-88dc-4c19b5ac96e4",
"WebsiteURL": "sample string 9",
"Title": "sample string 10",
"Provider": "sample string 11",
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2025-10-06T11:52:17.3792939+00:00",
"ProfilePictureUrl": "sample string 4",
"ProfilePictureThumbnailUrl": "sample string 5"
}
},
{
"LastModified": "2025-10-06T11:52:17.3792939Z",
"PublicationDate": "2025-10-06T11:52:17.3792939Z",
"DateCreated": "2025-10-06T11:52:17.3792939Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 5",
"UrlName": "sample string 6",
"ItemDefaultUrl": "sample string 7",
"healthtopics": "ccbb3a11-c346-4acd-88dc-4c19b5ac96e4",
"WebsiteURL": "sample string 9",
"Title": "sample string 10",
"Provider": "sample string 11",
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2025-10-06T11:52:17.3792939+00:00",
"ProfilePictureUrl": "sample string 4",
"ProfilePictureThumbnailUrl": "sample string 5"
}
}
]
Gets organizations item by id.
GET /api/resultsreport/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-06T11:52:17.3792939Z",
"PublicationDate": "2025-10-06T11:52:17.3792939Z",
"DateCreated": "2025-10-06T11:52:17.3792939Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 5",
"UrlName": "sample string 6",
"ItemDefaultUrl": "sample string 7",
"healthtopics": "2250ec6f-1bc3-4d89-8c76-32f1ffebe4bc",
"WebsiteURL": "sample string 9",
"Title": "sample string 10",
"Provider": "sample string 11",
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2025-10-06T11:52:17.3792939+00:00",
"ProfilePictureUrl": "sample string 4",
"ProfilePictureThumbnailUrl": "sample string 5"
}
}
Gets Id property from organizations item.
GET /api/resultsreport/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": "5987ce27-fa8a-4ee4-ba80-c827e154b97c"
}
Creates a organizations item.
POST /api/resultsreport/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-06T11:52:17.3792939Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 3",
"UrlName": "sample string 4",
"healthtopics": "5db79929-ba1e-409b-ace0-212d0c623bb2",
"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-06T11:52:17.3792939Z",
"PublicationDate": "2025-10-06T11:52:17.3792939Z",
"DateCreated": "2025-10-06T11:52:17.3792939Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 5",
"UrlName": "sample string 6",
"ItemDefaultUrl": "sample string 7",
"healthtopics": "c42de418-00cc-474c-b620-e6287294b226",
"WebsiteURL": "sample string 9",
"Title": "sample string 10",
"Provider": "sample string 11",
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2025-10-06T11:52:17.3792939+00:00",
"ProfilePictureUrl": "sample string 4",
"ProfilePictureThumbnailUrl": "sample string 5"
}
}
Partial update for organizations item.
PATCH /api/resultsreport/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-06T11:52:17.3792939Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 3",
"UrlName": "sample string 4",
"healthtopics": "2758136d-7fbd-4c5f-bf09-eeccaf01fa41",
"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/resultsreport/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-06T11:52:17.3792939Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 3",
"UrlName": "sample string 4",
"healthtopics": "1fff1bed-d8f3-417d-99b2-106314b9f3e6",
"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/resultsreport/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/resultsreport/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-06T11:52:17.3792939Z",
"PublicationDate": "2025-10-06T11:52:17.3792939Z",
"Title": "sample string 3",
"Description": "sample string 4",
"DateCreated": "2025-10-06T11:52:17.3792939Z",
"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": "d51b970b-82bf-4c16-a009-e8d4a370d4b3",
"publishingoffices": "e778e84a-04da-47fa-99a2-c44e45f0e3c4",
"events": "2cb8a099-18fd-4669-9367-548a6d426a20",
"targets": "747a569a-1fa1-4916-afe9-27ae2c5e58ea",
"Category": "9800b02c-ea0f-4cc9-b9af-5698477a346d",
"imagetypes": "d8b48db1-08fc-4474-81b3-edfce6990b8d",
"departmentaltargets": "000ff10c-4a3b-46a8-91fd-9dd94429d4c7",
"stakeholders": "95ece26f-e569-4f91-a1f4-7d4bc245a4c6",
"Tags": "d284e0a2-3452-4b01-9eb5-10223c6eeb42",
"healthtopics": "d7710ce3-f32f-413d-ab87-425e97a59a0d",
"targetaudiences": "3e85e9f0-661c-479f-9cbf-85662d1fcc77",
"IsOptimized": true,
"OptImgStatus": "sample string 27",
"Width": 28,
"Height": 29,
"AlternativeText": "sample string 30",
"FolderId": "059aa80c-9d90-42f3-b72c-797d99136812",
"ParentId": "7efe2444-756f-47e3-9912-ce0e36837f5c",
"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-06T11:52:17.3792939Z",
"PublicationDate": "2025-10-06T11:52:17.3792939Z",
"Title": "sample string 3",
"Description": "sample string 4",
"DateCreated": "2025-10-06T11:52:17.3792939Z",
"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": "d51b970b-82bf-4c16-a009-e8d4a370d4b3",
"publishingoffices": "e778e84a-04da-47fa-99a2-c44e45f0e3c4",
"events": "2cb8a099-18fd-4669-9367-548a6d426a20",
"targets": "747a569a-1fa1-4916-afe9-27ae2c5e58ea",
"Category": "9800b02c-ea0f-4cc9-b9af-5698477a346d",
"imagetypes": "d8b48db1-08fc-4474-81b3-edfce6990b8d",
"departmentaltargets": "000ff10c-4a3b-46a8-91fd-9dd94429d4c7",
"stakeholders": "95ece26f-e569-4f91-a1f4-7d4bc245a4c6",
"Tags": "d284e0a2-3452-4b01-9eb5-10223c6eeb42",
"healthtopics": "d7710ce3-f32f-413d-ab87-425e97a59a0d",
"targetaudiences": "3e85e9f0-661c-479f-9cbf-85662d1fcc77",
"IsOptimized": true,
"OptImgStatus": "sample string 27",
"Width": 28,
"Height": 29,
"AlternativeText": "sample string 30",
"FolderId": "059aa80c-9d90-42f3-b72c-797d99136812",
"ParentId": "7efe2444-756f-47e3-9912-ce0e36837f5c",
"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/resultsreport/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/resultsreport/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.