Returns a set of data items of type majortopics.
GET /api/news/majortopics
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 | |
IncludeItemIdInSpecificPageURL | System.Boolean | 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-12T03:20:01.9410876Z",
"PublicationDate": "2025-09-12T03:20:01.9410876Z",
"DateCreated": "2025-09-12T03:20:01.9410876Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 5",
"UrlName": "sample string 6",
"ItemDefaultUrl": "sample string 7",
"Title": "sample string 8",
"IncludeItemIdInSpecificPageURL": true,
"ParentId": "8ebe4e86-1b30-4eed-99be-b07aeb0e4172",
"Provider": "sample string 11",
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2025-09-12T03:20:01.9410876+00:00",
"ProfilePictureUrl": "sample string 4",
"ProfilePictureThumbnailUrl": "sample string 5"
}
},
{
"LastModified": "2025-09-12T03:20:01.9410876Z",
"PublicationDate": "2025-09-12T03:20:01.9410876Z",
"DateCreated": "2025-09-12T03:20:01.9410876Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 5",
"UrlName": "sample string 6",
"ItemDefaultUrl": "sample string 7",
"Title": "sample string 8",
"IncludeItemIdInSpecificPageURL": true,
"ParentId": "8ebe4e86-1b30-4eed-99be-b07aeb0e4172",
"Provider": "sample string 11",
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2025-09-12T03:20:01.9410876+00:00",
"ProfilePictureUrl": "sample string 4",
"ProfilePictureThumbnailUrl": "sample string 5"
}
}
]
Gets majortopics item by id.
GET /api/news/majortopics({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 | |
IncludeItemIdInSpecificPageURL | System.Boolean | 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-12T03:20:01.9410876Z",
"PublicationDate": "2025-09-12T03:20:01.9410876Z",
"DateCreated": "2025-09-12T03:20:01.9410876Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 5",
"UrlName": "sample string 6",
"ItemDefaultUrl": "sample string 7",
"Title": "sample string 8",
"IncludeItemIdInSpecificPageURL": true,
"ParentId": "3ecb7958-b3b4-4527-b10d-de33d022ea6a",
"Provider": "sample string 11",
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2025-09-12T03:20:01.9410876+00:00",
"ProfilePictureUrl": "sample string 4",
"ProfilePictureThumbnailUrl": "sample string 5"
}
}
Gets Id property from majortopics item.
GET /api/news/majortopics({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": "0a186592-4717-40b7-b70e-f9bb8d985066"
}
Creates a majortopics item.
POST /api/news/majortopics
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 | |
IncludeItemIdInSpecificPageURL | System.Boolean | 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-12T03:20:01.9410876Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 3",
"UrlName": "sample string 4",
"Title": "sample string 5",
"IncludeItemIdInSpecificPageURL": true,
"ParentId": "2c6d69bf-3871-4e80-9a57-8cb289cb5ad0"
}
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 | |
IncludeItemIdInSpecificPageURL | System.Boolean | 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-12T03:20:01.9410876Z",
"PublicationDate": "2025-09-12T03:20:01.9410876Z",
"DateCreated": "2025-09-12T03:20:01.9410876Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 5",
"UrlName": "sample string 6",
"ItemDefaultUrl": "sample string 7",
"Title": "sample string 8",
"IncludeItemIdInSpecificPageURL": true,
"ParentId": "18d95c67-e6cd-4a34-9b7b-558da3556108",
"Provider": "sample string 11",
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2025-09-12T03:20:01.9410876+00:00",
"ProfilePictureUrl": "sample string 4",
"ProfilePictureThumbnailUrl": "sample string 5"
}
}
Partial update for majortopics item.
PATCH /api/news/majortopics({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 | |
IncludeItemIdInSpecificPageURL | System.Boolean | 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-12T03:20:01.9410876Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 3",
"UrlName": "sample string 4",
"Title": "sample string 5",
"IncludeItemIdInSpecificPageURL": true,
"ParentId": "0e6f384d-d575-44ad-bfd5-1cb312ac01c3"
}
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 majortopics item.
PUT /api/news/majortopics({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 | |
IncludeItemIdInSpecificPageURL | System.Boolean | 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-12T03:20:01.9410876Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 3",
"UrlName": "sample string 4",
"Title": "sample string 5",
"IncludeItemIdInSpecificPageURL": true,
"ParentId": "a97f28ef-2161-41b1-9c97-065eeb1c37ef"
}
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 majortopics item by Id.
DELETE /api/news/majortopics({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 majortopics item.
GET /api/news/majortopics({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 | |
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 | |
Provider | System.String | Read only: True | |
Comments | Telerik.Sitefinity.Services.Comments.CommentContract | Read only: True |
application/json
[
{
"LastModified": "2025-09-12T03:20:01.9410876Z",
"PublicationDate": "2025-09-12T03:20:01.9410876Z",
"DateCreated": "2025-09-12T03:20:01.9410876Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 5",
"UrlName": "sample string 6",
"ItemDefaultUrl": "sample string 7",
"Title": "sample string 8",
"Provider": "sample string 9",
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2025-09-12T03:20:01.9410876+00:00",
"ProfilePictureUrl": "sample string 4",
"ProfilePictureThumbnailUrl": "sample string 5"
}
},
{
"LastModified": "2025-09-12T03:20:01.9410876Z",
"PublicationDate": "2025-09-12T03:20:01.9410876Z",
"DateCreated": "2025-09-12T03:20:01.9410876Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 5",
"UrlName": "sample string 6",
"ItemDefaultUrl": "sample string 7",
"Title": "sample string 8",
"Provider": "sample string 9",
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2025-09-12T03:20:01.9410876+00:00",
"ProfilePictureUrl": "sample string 4",
"ProfilePictureThumbnailUrl": "sample string 5"
}
}
]
Add Parent relation to majortopics item.
POST /api/news/majortopics({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 majortopics item.
DELETE /api/news/majortopics({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.
Returns a set of related items of type Topic from majortopics item.
GET /api/news/majortopics({key})/Topic
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 | |
Description | System.String | Read only: False | |
PriorityLevelWHO | System.Decimal | Read only: False | |
IncludeItemIdInSpecificPageURL | System.Boolean | Read only: False | |
Title | 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-12T03:20:01.9410876Z",
"PublicationDate": "2025-09-12T03:20:01.9410876Z",
"DateCreated": "2025-09-12T03:20:01.9410876Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 5",
"UrlName": "sample string 6",
"ItemDefaultUrl": "sample string 7",
"Description": "sample string 8",
"PriorityLevelWHO": 9.0,
"IncludeItemIdInSpecificPageURL": true,
"Title": "sample string 11",
"ParentId": "58f8b4c6-7c13-42f9-b226-4a634c070e42",
"Provider": "sample string 13",
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2025-09-12T03:20:01.9410876+00:00",
"ProfilePictureUrl": "sample string 4",
"ProfilePictureThumbnailUrl": "sample string 5"
}
},
{
"LastModified": "2025-09-12T03:20:01.9410876Z",
"PublicationDate": "2025-09-12T03:20:01.9410876Z",
"DateCreated": "2025-09-12T03:20:01.9410876Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 5",
"UrlName": "sample string 6",
"ItemDefaultUrl": "sample string 7",
"Description": "sample string 8",
"PriorityLevelWHO": 9.0,
"IncludeItemIdInSpecificPageURL": true,
"Title": "sample string 11",
"ParentId": "58f8b4c6-7c13-42f9-b226-4a634c070e42",
"Provider": "sample string 13",
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2025-09-12T03:20:01.9410876+00:00",
"ProfilePictureUrl": "sample string 4",
"ProfilePictureThumbnailUrl": "sample string 5"
}
}
]
Add Topic relation to majortopics item.
POST /api/news/majortopics({key})/Topic/$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 Topic from majortopics item.
DELETE /api/news/majortopics({key})/Topic/$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.
Returns a set of related items of type SpecificPage from majortopics item.
GET /api/news/majortopics({key})/SpecificPage
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 | |
UrlName | System.String | Read only: False | |
organizations | System.Guid | Read only: False | |
regionscountries | System.Guid | Read only: False | |
sustainabledevelopmentgoals | System.Guid | Read only: False | |
departmentaltargets | System.Guid | Read only: False | |
healthtopics | System.Guid | Read only: False | |
events | System.Guid | Read only: False | |
publishingoffices | System.Guid | Read only: False | |
WebPageType | System.String | Read only: False | |
targetaudiences | System.Guid | Read only: False | |
OpenGraphTitle | System.String | Read only: False | |
OpenGraphDescription | System.String | Read only: False | |
Title | System.String | Read only: False | |
DateCreated | System.DateTimeOffset | Read only: False | |
ShowInNavigation | System.Boolean | Read only: False | |
ParentId | System.Guid | Read only: False | |
RootId | System.Guid | Read only: False | |
ExpirationInDays | System.Int32 | Read only: False | |
HtmlTitle | System.String | Read only: False | |
Description | System.String | Read only: False | |
HeadTagContent | System.String | Read only: False | |
CodeBehindType | System.String | Read only: False | |
IncludeScriptManager | System.Boolean | Read only: False | |
EnableViewState | System.Boolean | Read only: False | |
PageType | Telerik.Sitefinity.Web.Api.Strategies.Pages.PageType | Read only: False | |
RedirectPage | Telerik.Sitefinity.Web.Api.Strategies.Pages.RedirectPage | Read only: False | |
TemplateId | System.Guid | Read only: False | |
RequireSsl | System.Boolean | Read only: False | |
EnableScriptManager | System.Boolean | Read only: False | |
AllowParametersValidation | System.Boolean | Read only: False | |
Crawlable | System.Boolean | Read only: False | |
IncludeInSearchIndex | System.Boolean | Read only: False | |
Priority | System.Single | Read only: False | |
LocalizationStrategy | Telerik.Sitefinity.Localization.LocalizationStrategy | Read only: True | |
CanonicalUrlBehaviour | Telerik.Sitefinity.Web.Api.Strategies.Pages.CanonicalUrlSettings | Read only: False | |
OutputCacheProfile | System.String | Read only: False | |
Renderer | System.String | Read only: False | |
TemplateName | System.String | Read only: False | |
Provider | System.String | Read only: True | |
HasChildren | System.Boolean | Read only: True | |
Breadcrumb | System.String | Read only: True | |
AvailableLanguages | System.String | Read only: True | |
PublicationDate | System.DateTimeOffset | Read only: True | |
ViewUrl | System.String | Read only: True | |
EditUrl | System.String | Read only: True | |
EditUrlBasePath | System.String | Read only: True | |
IsHomePage | System.Boolean | Read only: True | |
RelativeUrlPath | System.String | Read only: True |
application/json
[
{
"LastModified": "2025-09-12T03:20:01.9410876Z",
"UrlName": "sample string 2",
"organizations": "e09d5efd-e76b-42da-9e44-87b26e120013",
"regionscountries": "a8f6325e-0ecc-45b2-a024-94922d214f00",
"sustainabledevelopmentgoals": "457af9ae-c6ec-4fc8-aa2d-acfcc0fc2b6c",
"departmentaltargets": "41bda3ad-aed3-4614-b964-e862ec3a61ab",
"healthtopics": "fbd03687-9672-488c-92c7-47830a32ada7",
"events": "70f2dfc2-9c78-420b-8101-abf66babdf3b",
"publishingoffices": "d899cdaa-fda7-4705-bb33-47a35eb4ef79",
"WebPageType": "sample string 10",
"targetaudiences": "9fa9dc29-26a3-4a37-870c-07c0d14fd21b",
"OpenGraphTitle": "sample string 12",
"OpenGraphDescription": "sample string 13",
"Title": "sample string 14",
"DateCreated": "2025-09-12T03:20:01.9410876Z",
"ShowInNavigation": true,
"ParentId": "dedb2078-d1b6-4c19-8384-aa4eee111cc3",
"RootId": "af120b06-7bc9-44c6-926e-9963229a7d23",
"ExpirationInDays": 19,
"HtmlTitle": "sample string 20",
"Description": "sample string 21",
"HeadTagContent": "sample string 22",
"CodeBehindType": "sample string 23",
"IncludeScriptManager": true,
"EnableViewState": true,
"PageType": 0,
"RedirectPage": null,
"TemplateId": "eb4f4397-d184-4b36-90ac-3a192ec28938",
"RequireSsl": true,
"EnableScriptManager": true,
"AllowParametersValidation": true,
"Crawlable": true,
"IncludeInSearchIndex": true,
"Priority": 32.1,
"LocalizationStrategy": 0,
"CanonicalUrlBehaviour": 0,
"OutputCacheProfile": "sample string 33",
"Renderer": "sample string 34",
"TemplateName": "sample string 35",
"Provider": "sample string 36",
"HasChildren": true,
"Breadcrumb": "sample string 38",
"AvailableLanguages": "sample string 39",
"PublicationDate": "2025-09-12T03:20:01.9410876Z",
"ViewUrl": "sample string 41",
"EditUrl": "sample string 42",
"EditUrlBasePath": "sample string 43",
"IsHomePage": true,
"RelativeUrlPath": "sample string 45"
},
{
"LastModified": "2025-09-12T03:20:01.9410876Z",
"UrlName": "sample string 2",
"organizations": "e09d5efd-e76b-42da-9e44-87b26e120013",
"regionscountries": "a8f6325e-0ecc-45b2-a024-94922d214f00",
"sustainabledevelopmentgoals": "457af9ae-c6ec-4fc8-aa2d-acfcc0fc2b6c",
"departmentaltargets": "41bda3ad-aed3-4614-b964-e862ec3a61ab",
"healthtopics": "fbd03687-9672-488c-92c7-47830a32ada7",
"events": "70f2dfc2-9c78-420b-8101-abf66babdf3b",
"publishingoffices": "d899cdaa-fda7-4705-bb33-47a35eb4ef79",
"WebPageType": "sample string 10",
"targetaudiences": "9fa9dc29-26a3-4a37-870c-07c0d14fd21b",
"OpenGraphTitle": "sample string 12",
"OpenGraphDescription": "sample string 13",
"Title": "sample string 14",
"DateCreated": "2025-09-12T03:20:01.9410876Z",
"ShowInNavigation": true,
"ParentId": "dedb2078-d1b6-4c19-8384-aa4eee111cc3",
"RootId": "af120b06-7bc9-44c6-926e-9963229a7d23",
"ExpirationInDays": 19,
"HtmlTitle": "sample string 20",
"Description": "sample string 21",
"HeadTagContent": "sample string 22",
"CodeBehindType": "sample string 23",
"IncludeScriptManager": true,
"EnableViewState": true,
"PageType": 0,
"RedirectPage": null,
"TemplateId": "eb4f4397-d184-4b36-90ac-3a192ec28938",
"RequireSsl": true,
"EnableScriptManager": true,
"AllowParametersValidation": true,
"Crawlable": true,
"IncludeInSearchIndex": true,
"Priority": 32.1,
"LocalizationStrategy": 0,
"CanonicalUrlBehaviour": 0,
"OutputCacheProfile": "sample string 33",
"Renderer": "sample string 34",
"TemplateName": "sample string 35",
"Provider": "sample string 36",
"HasChildren": true,
"Breadcrumb": "sample string 38",
"AvailableLanguages": "sample string 39",
"PublicationDate": "2025-09-12T03:20:01.9410876Z",
"ViewUrl": "sample string 41",
"EditUrl": "sample string 42",
"EditUrlBasePath": "sample string 43",
"IsHomePage": true,
"RelativeUrlPath": "sample string 45"
}
]
Add SpecificPage relation to majortopics item.
POST /api/news/majortopics({key})/SpecificPage/$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 SpecificPage from majortopics item.
DELETE /api/news/majortopics({key})/SpecificPage/$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.