Returns a set of data items of type blogposts.
GET /api/news/blogposts
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 | |
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 | |
UrlName | System.String | Read only: False | |
ItemDefaultUrl | System.String | Read only: True | |
Category | System.Guid | Read only: False | |
Tags | System.Guid | Read only: False | |
AllowComments | System.Boolean | Read only: False | |
Summary | System.String | Read only: False | |
Content | System.String | Read only: False | |
ParentId | System.Guid | Read only: False | |
Provider | System.String | Read only: True | |
Comments | Telerik.Sitefinity.Services.Comments.CommentContract | Read only: True |
application/json
[
{
"LastModified": "2025-09-11T03:13:21.2821193Z",
"PublicationDate": "2025-09-11T03:13:21.2821193Z",
"Title": "sample string 3",
"Description": "sample string 4",
"DateCreated": "2025-09-11T03:13:21.2821193Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 7",
"UrlName": "sample string 8",
"ItemDefaultUrl": "sample string 9",
"Category": "3fc44ac0-b156-42af-bc9f-fc11f07fab24",
"Tags": "ec2945ea-fdb7-42d4-9dfa-de0b7ae86ec7",
"AllowComments": true,
"Summary": "sample string 13",
"Content": "sample string 14",
"ParentId": "12dcd314-79ba-403c-bb0d-a6b2763ca2b2",
"Provider": "sample string 16",
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2025-09-11T03:13:21.2821193+00:00",
"ProfilePictureUrl": "sample string 4",
"ProfilePictureThumbnailUrl": "sample string 5"
}
},
{
"LastModified": "2025-09-11T03:13:21.2821193Z",
"PublicationDate": "2025-09-11T03:13:21.2821193Z",
"Title": "sample string 3",
"Description": "sample string 4",
"DateCreated": "2025-09-11T03:13:21.2821193Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 7",
"UrlName": "sample string 8",
"ItemDefaultUrl": "sample string 9",
"Category": "3fc44ac0-b156-42af-bc9f-fc11f07fab24",
"Tags": "ec2945ea-fdb7-42d4-9dfa-de0b7ae86ec7",
"AllowComments": true,
"Summary": "sample string 13",
"Content": "sample string 14",
"ParentId": "12dcd314-79ba-403c-bb0d-a6b2763ca2b2",
"Provider": "sample string 16",
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2025-09-11T03:13:21.2821193+00:00",
"ProfilePictureUrl": "sample string 4",
"ProfilePictureThumbnailUrl": "sample string 5"
}
}
]
Gets blogposts item by id.
GET /api/news/blogposts({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 | |
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 | |
UrlName | System.String | Read only: False | |
ItemDefaultUrl | System.String | Read only: True | |
Category | System.Guid | Read only: False | |
Tags | System.Guid | Read only: False | |
AllowComments | System.Boolean | Read only: False | |
Summary | System.String | Read only: False | |
Content | System.String | Read only: False | |
ParentId | System.Guid | Read only: False | |
Provider | System.String | Read only: True | |
Comments | Telerik.Sitefinity.Services.Comments.CommentContract | Read only: True |
application/json
{
"LastModified": "2025-09-11T03:13:21.2821193Z",
"PublicationDate": "2025-09-11T03:13:21.2821193Z",
"Title": "sample string 3",
"Description": "sample string 4",
"DateCreated": "2025-09-11T03:13:21.2821193Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 7",
"UrlName": "sample string 8",
"ItemDefaultUrl": "sample string 9",
"Category": "77af1411-0c3b-40fa-b283-5fe018368513",
"Tags": "1c45678a-6b40-445e-b3b7-e2f2ce475956",
"AllowComments": true,
"Summary": "sample string 13",
"Content": "sample string 14",
"ParentId": "1878cd14-ddb2-4143-910e-53b730421ac0",
"Provider": "sample string 16",
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2025-09-11T03:13:21.2821193+00:00",
"ProfilePictureUrl": "sample string 4",
"ProfilePictureThumbnailUrl": "sample string 5"
}
}
Gets Id property from blogposts item.
GET /api/news/blogposts({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": "4755eefc-9688-4151-8c73-ed4e9c6090af"
}
Creates a blogposts item.
POST /api/news/blogposts
None
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 | |
UrlName | System.String | Read only: False | |
ItemDefaultUrl | System.String | Read only: True | |
Category | System.Guid | Read only: False | |
Tags | System.Guid | Read only: False | |
AllowComments | System.Boolean | Read only: False | |
Summary | System.String | Read only: False | |
Content | System.String | Read only: False | |
ParentId | System.Guid | Read only: False | |
Provider | System.String | Read only: True | |
Comments | Telerik.Sitefinity.Services.Comments.CommentContract | Read only: True |
application/json
{
"PublicationDate": "2025-09-11T03:13:21.2821193Z",
"Title": "sample string 2",
"Description": "sample string 3",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 5",
"UrlName": "sample string 6",
"Category": "87edfd61-4468-4825-8a88-552b1330674a",
"Tags": "628a063b-6773-43db-8516-81af9a7d2851",
"AllowComments": true,
"Summary": "sample string 10",
"Content": "sample string 11",
"ParentId": "ca894212-b4f0-4ffa-9c14-9e47f526467c"
}
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 | |
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 | |
UrlName | System.String | Read only: False | |
ItemDefaultUrl | System.String | Read only: True | |
Category | System.Guid | Read only: False | |
Tags | System.Guid | Read only: False | |
AllowComments | System.Boolean | Read only: False | |
Summary | System.String | Read only: False | |
Content | System.String | Read only: False | |
ParentId | System.Guid | Read only: False | |
Provider | System.String | Read only: True | |
Comments | Telerik.Sitefinity.Services.Comments.CommentContract | Read only: True |
application/json
{
"LastModified": "2025-09-11T03:13:21.2821193Z",
"PublicationDate": "2025-09-11T03:13:21.2821193Z",
"Title": "sample string 3",
"Description": "sample string 4",
"DateCreated": "2025-09-11T03:13:21.2821193Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 7",
"UrlName": "sample string 8",
"ItemDefaultUrl": "sample string 9",
"Category": "baff7857-e5f7-4dec-9eb9-abb80b6e2e2a",
"Tags": "5fd32479-bc2d-40b1-b1c3-8273df016bf2",
"AllowComments": true,
"Summary": "sample string 13",
"Content": "sample string 14",
"ParentId": "f85eff73-5bb0-4f7c-b120-51384e897699",
"Provider": "sample string 16",
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2025-09-11T03:13:21.2821193+00:00",
"ProfilePictureUrl": "sample string 4",
"ProfilePictureThumbnailUrl": "sample string 5"
}
}
Partial update for blogposts item.
PATCH /api/news/blogposts({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 | |
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 | |
UrlName | System.String | Read only: False | |
ItemDefaultUrl | System.String | Read only: True | |
Category | System.Guid | Read only: False | |
Tags | System.Guid | Read only: False | |
AllowComments | System.Boolean | Read only: False | |
Summary | System.String | Read only: False | |
Content | System.String | Read only: False | |
ParentId | System.Guid | Read only: False | |
Provider | System.String | Read only: True | |
Comments | Telerik.Sitefinity.Services.Comments.CommentContract | Read only: True |
application/json
{
"PublicationDate": "2025-09-11T03:13:21.2821193Z",
"Title": "sample string 2",
"Description": "sample string 3",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 5",
"UrlName": "sample string 6",
"Category": "654de5df-343a-4929-92d5-7fbd63fc0674",
"Tags": "4514aeb7-e2d0-4eb5-b90b-44c4ecad236a",
"AllowComments": true,
"Summary": "sample string 10",
"Content": "sample string 11",
"ParentId": "72a54789-f049-44c2-a715-9a5088a91938"
}
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 blogposts item.
PUT /api/news/blogposts({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 | |
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 | |
UrlName | System.String | Read only: False | |
ItemDefaultUrl | System.String | Read only: True | |
Category | System.Guid | Read only: False | |
Tags | System.Guid | Read only: False | |
AllowComments | System.Boolean | Read only: False | |
Summary | System.String | Read only: False | |
Content | System.String | Read only: False | |
ParentId | System.Guid | Read only: False | |
Provider | System.String | Read only: True | |
Comments | Telerik.Sitefinity.Services.Comments.CommentContract | Read only: True |
application/json
{
"PublicationDate": "2025-09-11T03:13:21.2821193Z",
"Title": "sample string 2",
"Description": "sample string 3",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 5",
"UrlName": "sample string 6",
"Category": "2a58f9fe-d16c-4d4b-ba50-6378a8d90fbc",
"Tags": "f1e2600f-f8d4-493f-8ae0-313b2754d131",
"AllowComments": true,
"Summary": "sample string 10",
"Content": "sample string 11",
"ParentId": "6ef4759f-6f4c-4407-a647-4992444b56b2"
}
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 blogposts item by Id.
DELETE /api/news/blogposts({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 Parent from blogposts item.
GET /api/news/blogposts({key})/Parent
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 | |
UrlName | System.String | Read only: False | |
ItemDefaultUrl | System.String | Read only: True | |
Provider | System.String | Read only: True |
application/json
[
{
"LastModified": "2025-09-11T03:13:21.2821193Z",
"PublicationDate": "2025-09-11T03:13:21.2821193Z",
"Title": "sample string 3",
"Description": "sample string 4",
"DateCreated": "2025-09-11T03:13:21.2821193Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 7",
"UrlName": "sample string 8",
"ItemDefaultUrl": "sample string 9",
"Provider": "sample string 10"
},
{
"LastModified": "2025-09-11T03:13:21.2821193Z",
"PublicationDate": "2025-09-11T03:13:21.2821193Z",
"Title": "sample string 3",
"Description": "sample string 4",
"DateCreated": "2025-09-11T03:13:21.2821193Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 7",
"UrlName": "sample string 8",
"ItemDefaultUrl": "sample string 9",
"Provider": "sample string 10"
}
]
Add Parent relation to blogposts item.
POST /api/news/blogposts({key})/Parent/$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 Parent from blogposts item.
DELETE /api/news/blogposts({key})/Parent/$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.