Returns a set of data items of type series.
GET /api/news/series
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 | |
| publishingoffices | System.Guid | Read only: False | |
| IsWhoPublication | System.Boolean | Read only: False | |
| regionscountries | System.Guid | Read only: False | |
| ArticleSortingOrder | System.String | Read only: False | |
| IsActive | System.Boolean | Read only: False | |
| Title | System.String | Read only: False | |
| healthtopics | System.Guid | Read only: False | |
| Summary | System.String | Read only: False | |
| Provider | System.String | Read only: True | |
| Comments | Telerik.Sitefinity.Services.Comments.CommentContract | Read only: True |
application/json
[
{
"LastModified": "2026-01-12T20:05:00.7940366Z",
"PublicationDate": "2026-01-12T20:05:00.7940366Z",
"DateCreated": "2026-01-12T20:05:00.7940366Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 5",
"UrlName": "sample string 6",
"ItemDefaultUrl": "sample string 7",
"publishingoffices": "a1ee49d4-2e26-4f68-8b9c-e1e594f47edf",
"IsWhoPublication": true,
"regionscountries": "c805b824-645b-4505-b554-6c4955277c82",
"ArticleSortingOrder": "sample string 11",
"IsActive": true,
"Title": "sample string 13",
"healthtopics": "e5f394e4-4584-49b6-8480-ba9d112e65c4",
"Summary": "sample string 15",
"Provider": "sample string 16",
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2026-01-12T20:05:00.7940366+00:00",
"ProfilePictureUrl": "sample string 4",
"ProfilePictureThumbnailUrl": "sample string 5"
}
},
{
"LastModified": "2026-01-12T20:05:00.7940366Z",
"PublicationDate": "2026-01-12T20:05:00.7940366Z",
"DateCreated": "2026-01-12T20:05:00.7940366Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 5",
"UrlName": "sample string 6",
"ItemDefaultUrl": "sample string 7",
"publishingoffices": "a1ee49d4-2e26-4f68-8b9c-e1e594f47edf",
"IsWhoPublication": true,
"regionscountries": "c805b824-645b-4505-b554-6c4955277c82",
"ArticleSortingOrder": "sample string 11",
"IsActive": true,
"Title": "sample string 13",
"healthtopics": "e5f394e4-4584-49b6-8480-ba9d112e65c4",
"Summary": "sample string 15",
"Provider": "sample string 16",
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2026-01-12T20:05:00.7940366+00:00",
"ProfilePictureUrl": "sample string 4",
"ProfilePictureThumbnailUrl": "sample string 5"
}
}
]Gets series item by id.
GET /api/news/series({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 | |
| publishingoffices | System.Guid | Read only: False | |
| IsWhoPublication | System.Boolean | Read only: False | |
| regionscountries | System.Guid | Read only: False | |
| ArticleSortingOrder | System.String | Read only: False | |
| IsActive | System.Boolean | Read only: False | |
| Title | System.String | Read only: False | |
| healthtopics | System.Guid | Read only: False | |
| Summary | System.String | Read only: False | |
| Provider | System.String | Read only: True | |
| Comments | Telerik.Sitefinity.Services.Comments.CommentContract | Read only: True |
application/json
{
"LastModified": "2026-01-12T20:05:00.7940366Z",
"PublicationDate": "2026-01-12T20:05:00.7940366Z",
"DateCreated": "2026-01-12T20:05:00.7940366Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 5",
"UrlName": "sample string 6",
"ItemDefaultUrl": "sample string 7",
"publishingoffices": "321b47c1-44f8-4dbb-9458-297c0b546e24",
"IsWhoPublication": true,
"regionscountries": "56eb5eac-59ed-4cc4-9884-d112d9671397",
"ArticleSortingOrder": "sample string 11",
"IsActive": true,
"Title": "sample string 13",
"healthtopics": "9555143a-6fbb-471a-b519-10d94f2d9c41",
"Summary": "sample string 15",
"Provider": "sample string 16",
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2026-01-12T20:05:00.7940366+00:00",
"ProfilePictureUrl": "sample string 4",
"ProfilePictureThumbnailUrl": "sample string 5"
}
}Gets Id property from series item.
GET /api/news/series({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": "c4268e31-3a74-4aef-9677-efd7c6262e11"
}Creates a series item.
POST /api/news/series
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 | |
| publishingoffices | System.Guid | Read only: False | |
| IsWhoPublication | System.Boolean | Read only: False | |
| regionscountries | System.Guid | Read only: False | |
| ArticleSortingOrder | System.String | Read only: False | |
| IsActive | System.Boolean | Read only: False | |
| Title | System.String | Read only: False | |
| healthtopics | System.Guid | Read only: False | |
| Summary | System.String | Read only: False | |
| Provider | System.String | Read only: True | |
| Comments | Telerik.Sitefinity.Services.Comments.CommentContract | Read only: True |
application/json
{
"PublicationDate": "2026-01-12T20:05:00.7940366Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 3",
"UrlName": "sample string 4",
"publishingoffices": "ca00a1f3-7a41-45e9-86fb-62e77fc58579",
"IsWhoPublication": true,
"regionscountries": "fcc5a6db-4a31-4d1d-a42a-38bd010a2b69",
"ArticleSortingOrder": "sample string 8",
"IsActive": true,
"Title": "sample string 10",
"healthtopics": "71e9498b-8ac9-4cf8-ac81-f6c10e6c9a5d",
"Summary": "sample string 12"
}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 | |
| publishingoffices | System.Guid | Read only: False | |
| IsWhoPublication | System.Boolean | Read only: False | |
| regionscountries | System.Guid | Read only: False | |
| ArticleSortingOrder | System.String | Read only: False | |
| IsActive | System.Boolean | Read only: False | |
| Title | System.String | Read only: False | |
| healthtopics | System.Guid | Read only: False | |
| Summary | System.String | Read only: False | |
| Provider | System.String | Read only: True | |
| Comments | Telerik.Sitefinity.Services.Comments.CommentContract | Read only: True |
application/json
{
"LastModified": "2026-01-12T20:05:00.7940366Z",
"PublicationDate": "2026-01-12T20:05:00.7940366Z",
"DateCreated": "2026-01-12T20:05:00.7940366Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 5",
"UrlName": "sample string 6",
"ItemDefaultUrl": "sample string 7",
"publishingoffices": "4db91aff-27fb-4b1e-a6a0-d2d1a1246004",
"IsWhoPublication": true,
"regionscountries": "8bcc7de2-77a1-4faf-a603-d6453d290f8a",
"ArticleSortingOrder": "sample string 11",
"IsActive": true,
"Title": "sample string 13",
"healthtopics": "713b605e-ad76-4ac4-b29a-756ef6331cc4",
"Summary": "sample string 15",
"Provider": "sample string 16",
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2026-01-12T20:05:00.7940366+00:00",
"ProfilePictureUrl": "sample string 4",
"ProfilePictureThumbnailUrl": "sample string 5"
}
}Partial update for series item.
PATCH /api/news/series({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 | |
| publishingoffices | System.Guid | Read only: False | |
| IsWhoPublication | System.Boolean | Read only: False | |
| regionscountries | System.Guid | Read only: False | |
| ArticleSortingOrder | System.String | Read only: False | |
| IsActive | System.Boolean | Read only: False | |
| Title | System.String | Read only: False | |
| healthtopics | System.Guid | Read only: False | |
| Summary | System.String | Read only: False | |
| Provider | System.String | Read only: True | |
| Comments | Telerik.Sitefinity.Services.Comments.CommentContract | Read only: True |
application/json
{
"PublicationDate": "2026-01-12T20:05:00.7940366Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 3",
"UrlName": "sample string 4",
"publishingoffices": "53eca1b1-fb26-41bf-8088-16e47a23b856",
"IsWhoPublication": true,
"regionscountries": "36029751-c597-44df-99fd-cfcf61a9075f",
"ArticleSortingOrder": "sample string 8",
"IsActive": true,
"Title": "sample string 10",
"healthtopics": "b2d4fb59-8943-47c6-880a-1ed91d7b5ab8",
"Summary": "sample string 12"
}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 series item.
PUT /api/news/series({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 | |
| publishingoffices | System.Guid | Read only: False | |
| IsWhoPublication | System.Boolean | Read only: False | |
| regionscountries | System.Guid | Read only: False | |
| ArticleSortingOrder | System.String | Read only: False | |
| IsActive | System.Boolean | Read only: False | |
| Title | System.String | Read only: False | |
| healthtopics | System.Guid | Read only: False | |
| Summary | System.String | Read only: False | |
| Provider | System.String | Read only: True | |
| Comments | Telerik.Sitefinity.Services.Comments.CommentContract | Read only: True |
application/json
{
"PublicationDate": "2026-01-12T20:05:00.7940366Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 3",
"UrlName": "sample string 4",
"publishingoffices": "d4d193b7-ddc4-4060-872f-af96611d6e29",
"IsWhoPublication": true,
"regionscountries": "9ec6eaa2-514f-4f95-a142-47dd3900824e",
"ArticleSortingOrder": "sample string 8",
"IsActive": true,
"Title": "sample string 10",
"healthtopics": "6dc35964-619b-4d77-ad91-dc19ce272683",
"Summary": "sample string 12"
}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 series item by Id.
DELETE /api/news/series({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.