Returns a set of data items of type dapolicycontents.
GET /api/news/dapolicycontents
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 | |
SortOrder | System.Decimal | 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:33:03.616913Z",
"PublicationDate": "2025-09-12T03:33:03.616913Z",
"DateCreated": "2025-09-12T03:33:03.616913Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 5",
"UrlName": "sample string 6",
"ItemDefaultUrl": "sample string 7",
"Title": "sample string 8",
"SortOrder": 9.0,
"ParentId": "bf7981c4-101e-4b1f-8f19-6ef9a492dfc8",
"Provider": "sample string 11",
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2025-09-12T03:33:03.616913+00:00",
"ProfilePictureUrl": "sample string 4",
"ProfilePictureThumbnailUrl": "sample string 5"
}
},
{
"LastModified": "2025-09-12T03:33:03.616913Z",
"PublicationDate": "2025-09-12T03:33:03.616913Z",
"DateCreated": "2025-09-12T03:33:03.616913Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 5",
"UrlName": "sample string 6",
"ItemDefaultUrl": "sample string 7",
"Title": "sample string 8",
"SortOrder": 9.0,
"ParentId": "bf7981c4-101e-4b1f-8f19-6ef9a492dfc8",
"Provider": "sample string 11",
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2025-09-12T03:33:03.616913+00:00",
"ProfilePictureUrl": "sample string 4",
"ProfilePictureThumbnailUrl": "sample string 5"
}
}
]
Gets dapolicycontents item by id.
GET /api/news/dapolicycontents({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 | |
SortOrder | System.Decimal | 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:33:03.616913Z",
"PublicationDate": "2025-09-12T03:33:03.616913Z",
"DateCreated": "2025-09-12T03:33:03.616913Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 5",
"UrlName": "sample string 6",
"ItemDefaultUrl": "sample string 7",
"Title": "sample string 8",
"SortOrder": 9.0,
"ParentId": "dc6f4d3b-4ea0-4268-9a7e-c038685b3320",
"Provider": "sample string 11",
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2025-09-12T03:33:03.616913+00:00",
"ProfilePictureUrl": "sample string 4",
"ProfilePictureThumbnailUrl": "sample string 5"
}
}
Gets Id property from dapolicycontents item.
GET /api/news/dapolicycontents({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": "f8d394a5-92ff-471a-8b7a-41b599d2a27a"
}
Creates a dapolicycontents item.
POST /api/news/dapolicycontents
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 | |
SortOrder | System.Decimal | 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:33:03.616913Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 3",
"UrlName": "sample string 4",
"Title": "sample string 5",
"SortOrder": 6.0,
"ParentId": "f23a6bde-2b4a-46f8-95bc-63044fac099a"
}
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 | |
SortOrder | System.Decimal | 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:33:03.616913Z",
"PublicationDate": "2025-09-12T03:33:03.616913Z",
"DateCreated": "2025-09-12T03:33:03.616913Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 5",
"UrlName": "sample string 6",
"ItemDefaultUrl": "sample string 7",
"Title": "sample string 8",
"SortOrder": 9.0,
"ParentId": "be2a216e-3e8a-4c9a-bb18-9078ade4c988",
"Provider": "sample string 11",
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2025-09-12T03:33:03.616913+00:00",
"ProfilePictureUrl": "sample string 4",
"ProfilePictureThumbnailUrl": "sample string 5"
}
}
Partial update for dapolicycontents item.
PATCH /api/news/dapolicycontents({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 | |
SortOrder | System.Decimal | 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:33:03.616913Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 3",
"UrlName": "sample string 4",
"Title": "sample string 5",
"SortOrder": 6.0,
"ParentId": "1cb156e6-4a0f-4d51-b467-59d5eb941adc"
}
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 dapolicycontents item.
PUT /api/news/dapolicycontents({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 | |
SortOrder | System.Decimal | 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:33:03.616913Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 3",
"UrlName": "sample string 4",
"Title": "sample string 5",
"SortOrder": 6.0,
"ParentId": "986ba749-66a4-47aa-b4e8-8650cbfc492c"
}
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 dapolicycontents item by Id.
DELETE /api/news/dapolicycontents({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 dapolicycontents item.
GET /api/news/dapolicycontents({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 | |
LinkedContact | System.String | Read only: False | |
Statement | System.String | Read only: False | |
dafunctionalareas | System.Guid | Read only: False | |
Summary | System.String | Read only: False | |
SFDOI | System.String | Read only: False | |
Objectives | System.String | Read only: False | |
Introduction | 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-09-12T03:33:03.616913Z",
"PublicationDate": "2025-09-12T03:33:03.616913Z",
"DateCreated": "2025-09-12T03:33:03.616913Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 5",
"UrlName": "sample string 6",
"ItemDefaultUrl": "sample string 7",
"LinkedContact": "sample string 8",
"Statement": "sample string 9",
"dafunctionalareas": "35e07324-9d7d-4cc7-b118-fec79da1ad98",
"Summary": "sample string 11",
"SFDOI": "sample string 12",
"Objectives": "sample string 13",
"Introduction": "sample string 14",
"Title": "sample string 15",
"Provider": "sample string 16",
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2025-09-12T03:33:03.616913+00:00",
"ProfilePictureUrl": "sample string 4",
"ProfilePictureThumbnailUrl": "sample string 5"
}
},
{
"LastModified": "2025-09-12T03:33:03.616913Z",
"PublicationDate": "2025-09-12T03:33:03.616913Z",
"DateCreated": "2025-09-12T03:33:03.616913Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 5",
"UrlName": "sample string 6",
"ItemDefaultUrl": "sample string 7",
"LinkedContact": "sample string 8",
"Statement": "sample string 9",
"dafunctionalareas": "35e07324-9d7d-4cc7-b118-fec79da1ad98",
"Summary": "sample string 11",
"SFDOI": "sample string 12",
"Objectives": "sample string 13",
"Introduction": "sample string 14",
"Title": "sample string 15",
"Provider": "sample string 16",
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2025-09-12T03:33:03.616913+00:00",
"ProfilePictureUrl": "sample string 4",
"ProfilePictureThumbnailUrl": "sample string 5"
}
}
]
Add Parent relation to dapolicycontents item.
POST /api/news/dapolicycontents({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 dapolicycontents item.
DELETE /api/news/dapolicycontents({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 RelatedGuideline from dapolicycontents item.
GET /api/news/dapolicycontents({key})/RelatedGuideline
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 | |
daguidelinetopics | System.Guid | Read only: False | |
Introduction | System.String | Read only: False | |
Title | System.String | Read only: False | |
LinkedResources | System.String | Read only: False | |
SFDOI | System.String | Read only: False | |
dafunctionalareas | System.Guid | Read only: False | |
Summary | System.String | Read only: False | |
Definitions | 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:33:03.616913Z",
"PublicationDate": "2025-09-12T03:33:03.616913Z",
"DateCreated": "2025-09-12T03:33:03.616913Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 5",
"UrlName": "sample string 6",
"ItemDefaultUrl": "sample string 7",
"daguidelinetopics": "c6e10a5c-9cc0-45e2-bfb2-b89672c90fe6",
"Introduction": "sample string 9",
"Title": "sample string 10",
"LinkedResources": "sample string 11",
"SFDOI": "sample string 12",
"dafunctionalareas": "de7c1088-c25f-4ae3-aacb-3233156d5868",
"Summary": "sample string 14",
"Definitions": "sample string 15",
"Provider": "sample string 16",
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2025-09-12T03:33:03.616913+00:00",
"ProfilePictureUrl": "sample string 4",
"ProfilePictureThumbnailUrl": "sample string 5"
}
},
{
"LastModified": "2025-09-12T03:33:03.616913Z",
"PublicationDate": "2025-09-12T03:33:03.616913Z",
"DateCreated": "2025-09-12T03:33:03.616913Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 5",
"UrlName": "sample string 6",
"ItemDefaultUrl": "sample string 7",
"daguidelinetopics": "c6e10a5c-9cc0-45e2-bfb2-b89672c90fe6",
"Introduction": "sample string 9",
"Title": "sample string 10",
"LinkedResources": "sample string 11",
"SFDOI": "sample string 12",
"dafunctionalareas": "de7c1088-c25f-4ae3-aacb-3233156d5868",
"Summary": "sample string 14",
"Definitions": "sample string 15",
"Provider": "sample string 16",
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2025-09-12T03:33:03.616913+00:00",
"ProfilePictureUrl": "sample string 4",
"ProfilePictureThumbnailUrl": "sample string 5"
}
}
]
Add RelatedGuideline relation to dapolicycontents item.
POST /api/news/dapolicycontents({key})/RelatedGuideline/$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 RelatedGuideline from dapolicycontents item.
DELETE /api/news/dapolicycontents({key})/RelatedGuideline/$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 RelatedPolicy from dapolicycontents item.
GET /api/news/dapolicycontents({key})/RelatedPolicy
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 | |
LinkedContact | System.String | Read only: False | |
Statement | System.String | Read only: False | |
dafunctionalareas | System.Guid | Read only: False | |
Summary | System.String | Read only: False | |
SFDOI | System.String | Read only: False | |
Objectives | System.String | Read only: False | |
Introduction | 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-09-12T03:33:03.616913Z",
"PublicationDate": "2025-09-12T03:33:03.616913Z",
"DateCreated": "2025-09-12T03:33:03.616913Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 5",
"UrlName": "sample string 6",
"ItemDefaultUrl": "sample string 7",
"LinkedContact": "sample string 8",
"Statement": "sample string 9",
"dafunctionalareas": "7b3987c6-d0cc-4876-896d-df8ed862dfe6",
"Summary": "sample string 11",
"SFDOI": "sample string 12",
"Objectives": "sample string 13",
"Introduction": "sample string 14",
"Title": "sample string 15",
"Provider": "sample string 16",
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2025-09-12T03:33:03.616913+00:00",
"ProfilePictureUrl": "sample string 4",
"ProfilePictureThumbnailUrl": "sample string 5"
}
},
{
"LastModified": "2025-09-12T03:33:03.616913Z",
"PublicationDate": "2025-09-12T03:33:03.616913Z",
"DateCreated": "2025-09-12T03:33:03.616913Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 5",
"UrlName": "sample string 6",
"ItemDefaultUrl": "sample string 7",
"LinkedContact": "sample string 8",
"Statement": "sample string 9",
"dafunctionalareas": "7b3987c6-d0cc-4876-896d-df8ed862dfe6",
"Summary": "sample string 11",
"SFDOI": "sample string 12",
"Objectives": "sample string 13",
"Introduction": "sample string 14",
"Title": "sample string 15",
"Provider": "sample string 16",
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2025-09-12T03:33:03.616913+00:00",
"ProfilePictureUrl": "sample string 4",
"ProfilePictureThumbnailUrl": "sample string 5"
}
}
]
Add RelatedPolicy relation to dapolicycontents item.
POST /api/news/dapolicycontents({key})/RelatedPolicy/$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 RelatedPolicy from dapolicycontents item.
DELETE /api/news/dapolicycontents({key})/RelatedPolicy/$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.