Returns a set of data items of type partners.
GET /api/news/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-06T10:06:48.3153794Z",
"PublicationDate": "2025-10-06T10:06:48.3153794Z",
"DateCreated": "2025-10-06T10:06:48.3153794Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 5",
"UrlName": "sample string 6",
"ItemDefaultUrl": "sample string 7",
"Title": "sample string 8",
"PartnerURL": "sample string 9",
"healthtopics": "08764b0b-1dba-4633-8950-81294f44fa62",
"Provider": "sample string 11",
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2025-10-06T10:06:48.3153794+00:00",
"ProfilePictureUrl": "sample string 4",
"ProfilePictureThumbnailUrl": "sample string 5"
}
},
{
"LastModified": "2025-10-06T10:06:48.3153794Z",
"PublicationDate": "2025-10-06T10:06:48.3153794Z",
"DateCreated": "2025-10-06T10:06:48.3153794Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 5",
"UrlName": "sample string 6",
"ItemDefaultUrl": "sample string 7",
"Title": "sample string 8",
"PartnerURL": "sample string 9",
"healthtopics": "08764b0b-1dba-4633-8950-81294f44fa62",
"Provider": "sample string 11",
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2025-10-06T10:06:48.3153794+00:00",
"ProfilePictureUrl": "sample string 4",
"ProfilePictureThumbnailUrl": "sample string 5"
}
}
]
Gets partners item by id.
GET /api/news/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-06T10:06:48.3153794Z",
"PublicationDate": "2025-10-06T10:06:48.3153794Z",
"DateCreated": "2025-10-06T10:06:48.3153794Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 5",
"UrlName": "sample string 6",
"ItemDefaultUrl": "sample string 7",
"Title": "sample string 8",
"PartnerURL": "sample string 9",
"healthtopics": "6d13a150-c083-48c6-8dbe-b1c16b16bf22",
"Provider": "sample string 11",
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2025-10-06T10:06:48.3153794+00:00",
"ProfilePictureUrl": "sample string 4",
"ProfilePictureThumbnailUrl": "sample string 5"
}
}
Gets Id property from partners item.
GET /api/news/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": "3adb5c6b-9d6d-470f-97a1-407120412035"
}
Creates a partners item.
POST /api/news/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-06T10:06:48.3153794Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 3",
"UrlName": "sample string 4",
"Title": "sample string 5",
"PartnerURL": "sample string 6",
"healthtopics": "1c6410e0-45c0-4ae9-9e2b-f931d2aa7d64"
}
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-06T10:06:48.3153794Z",
"PublicationDate": "2025-10-06T10:06:48.3153794Z",
"DateCreated": "2025-10-06T10:06:48.3153794Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 5",
"UrlName": "sample string 6",
"ItemDefaultUrl": "sample string 7",
"Title": "sample string 8",
"PartnerURL": "sample string 9",
"healthtopics": "d4cb28f3-185e-405b-b653-cba27de178a9",
"Provider": "sample string 11",
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2025-10-06T10:06:48.3153794+00:00",
"ProfilePictureUrl": "sample string 4",
"ProfilePictureThumbnailUrl": "sample string 5"
}
}
Partial update for partners item.
PATCH /api/news/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-06T10:06:48.3153794Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 3",
"UrlName": "sample string 4",
"Title": "sample string 5",
"PartnerURL": "sample string 6",
"healthtopics": "0d0ac543-25a6-4f42-936d-d5cceafad66f"
}
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/news/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-06T10:06:48.3153794Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 3",
"UrlName": "sample string 4",
"Title": "sample string 5",
"PartnerURL": "sample string 6",
"healthtopics": "f24578c4-be16-4dca-8e37-2032440288b7"
}
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/news/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.