Returns a set of data items of type publicadviceactions.
GET /api/news/publicadviceactions
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 | |
Position | System.Decimal | 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-11T03:13:21.5945146Z",
"PublicationDate": "2025-09-11T03:13:21.5945146Z",
"DateCreated": "2025-09-11T03:13:21.5945146Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 5",
"UrlName": "sample string 6",
"ItemDefaultUrl": "sample string 7",
"Position": 8.0,
"Title": "sample string 9",
"ParentId": "f692970e-5de4-43b2-a2c3-4e685b9a3f88",
"Provider": "sample string 11",
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2025-09-11T03:13:21.5945146+00:00",
"ProfilePictureUrl": "sample string 4",
"ProfilePictureThumbnailUrl": "sample string 5"
}
},
{
"LastModified": "2025-09-11T03:13:21.5945146Z",
"PublicationDate": "2025-09-11T03:13:21.5945146Z",
"DateCreated": "2025-09-11T03:13:21.5945146Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 5",
"UrlName": "sample string 6",
"ItemDefaultUrl": "sample string 7",
"Position": 8.0,
"Title": "sample string 9",
"ParentId": "f692970e-5de4-43b2-a2c3-4e685b9a3f88",
"Provider": "sample string 11",
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2025-09-11T03:13:21.5945146+00:00",
"ProfilePictureUrl": "sample string 4",
"ProfilePictureThumbnailUrl": "sample string 5"
}
}
]
Gets publicadviceactions item by id.
GET /api/news/publicadviceactions({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 | |
Position | System.Decimal | 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-11T03:13:21.5945146Z",
"PublicationDate": "2025-09-11T03:13:21.5945146Z",
"DateCreated": "2025-09-11T03:13:21.5945146Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 5",
"UrlName": "sample string 6",
"ItemDefaultUrl": "sample string 7",
"Position": 8.0,
"Title": "sample string 9",
"ParentId": "6733c3ca-7c10-4100-a316-3230631896ea",
"Provider": "sample string 11",
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2025-09-11T03:13:21.5945146+00:00",
"ProfilePictureUrl": "sample string 4",
"ProfilePictureThumbnailUrl": "sample string 5"
}
}
Gets Id property from publicadviceactions item.
GET /api/news/publicadviceactions({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": "faff7ca2-560f-47a6-99fe-29d6710aca0a"
}
Creates a publicadviceactions item.
POST /api/news/publicadviceactions
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 | |
Position | System.Decimal | 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
{
"PublicationDate": "2025-09-11T03:13:21.5945146Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 3",
"UrlName": "sample string 4",
"Position": 5.0,
"Title": "sample string 6",
"ParentId": "9b769a7d-3db1-43f9-b06d-b6ed2ea277f8"
}
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 | |
Position | System.Decimal | 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-11T03:13:21.5945146Z",
"PublicationDate": "2025-09-11T03:13:21.5945146Z",
"DateCreated": "2025-09-11T03:13:21.5945146Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 5",
"UrlName": "sample string 6",
"ItemDefaultUrl": "sample string 7",
"Position": 8.0,
"Title": "sample string 9",
"ParentId": "6cec8c07-ecc9-499a-9519-512312f11454",
"Provider": "sample string 11",
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2025-09-11T03:13:21.5945146+00:00",
"ProfilePictureUrl": "sample string 4",
"ProfilePictureThumbnailUrl": "sample string 5"
}
}
Partial update for publicadviceactions item.
PATCH /api/news/publicadviceactions({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 | |
Position | System.Decimal | 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
{
"PublicationDate": "2025-09-11T03:13:21.5945146Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 3",
"UrlName": "sample string 4",
"Position": 5.0,
"Title": "sample string 6",
"ParentId": "c720dea0-c4e4-41be-be2f-d633a5eab5de"
}
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 publicadviceactions item.
PUT /api/news/publicadviceactions({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 | |
Position | System.Decimal | 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
{
"PublicationDate": "2025-09-11T03:13:21.5945146Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 3",
"UrlName": "sample string 4",
"Position": 5.0,
"Title": "sample string 6",
"ParentId": "8343bef1-5271-44c9-a316-c611b1a8f5cf"
}
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 publicadviceactions item by Id.
DELETE /api/news/publicadviceactions({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 publicadviceactions item.
GET /api/news/publicadviceactions({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 | |
Summary | System.String | Read only: False | |
Title | System.String | Read only: False | |
healthtopics | System.Guid | Read only: False | |
MoreInfo | System.String | Read only: False | |
Notes | System.String | Read only: False | |
ReferenceLinks | System.String | Read only: False | |
publishingoffices | System.Guid | Read only: False | |
Content | System.String | Read only: False | |
regionscountries | 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.5945146Z",
"PublicationDate": "2025-09-11T03:13:21.5945146Z",
"DateCreated": "2025-09-11T03:13:21.5945146Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 5",
"UrlName": "sample string 6",
"ItemDefaultUrl": "sample string 7",
"Summary": "sample string 8",
"Title": "sample string 9",
"healthtopics": "bfbf05f5-69a2-4398-bc37-666c47dd6f20",
"MoreInfo": "sample string 11",
"Notes": "sample string 12",
"ReferenceLinks": "sample string 13",
"publishingoffices": "74906909-b44a-4fb8-aecd-aa7ed399d67a",
"Content": "sample string 15",
"regionscountries": "17ba956c-edb8-49ed-8035-d7702e5e0e50",
"Provider": "sample string 17",
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2025-09-11T03:13:21.5945146+00:00",
"ProfilePictureUrl": "sample string 4",
"ProfilePictureThumbnailUrl": "sample string 5"
}
},
{
"LastModified": "2025-09-11T03:13:21.5945146Z",
"PublicationDate": "2025-09-11T03:13:21.5945146Z",
"DateCreated": "2025-09-11T03:13:21.5945146Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 5",
"UrlName": "sample string 6",
"ItemDefaultUrl": "sample string 7",
"Summary": "sample string 8",
"Title": "sample string 9",
"healthtopics": "bfbf05f5-69a2-4398-bc37-666c47dd6f20",
"MoreInfo": "sample string 11",
"Notes": "sample string 12",
"ReferenceLinks": "sample string 13",
"publishingoffices": "74906909-b44a-4fb8-aecd-aa7ed399d67a",
"Content": "sample string 15",
"regionscountries": "17ba956c-edb8-49ed-8035-d7702e5e0e50",
"Provider": "sample string 17",
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2025-09-11T03:13:21.5945146+00:00",
"ProfilePictureUrl": "sample string 4",
"ProfilePictureThumbnailUrl": "sample string 5"
}
}
]
Add Parent relation to publicadviceactions item.
POST /api/news/publicadviceactions({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 publicadviceactions item.
DELETE /api/news/publicadviceactions({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.