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": "2026-02-06T21:47:43.1092698Z",
"PublicationDate": "2026-02-06T21:47:43.1092698Z",
"DateCreated": "2026-02-06T21:47:43.1092698Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 5",
"UrlName": "sample string 6",
"ItemDefaultUrl": "sample string 7",
"Position": 8.0,
"Title": "sample string 9",
"ParentId": "db67524a-68f9-45af-825a-718d0068d04b",
"Provider": "sample string 11",
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2026-02-06T21:47:43.1092698+00:00",
"ProfilePictureUrl": "sample string 4",
"ProfilePictureThumbnailUrl": "sample string 5"
}
},
{
"LastModified": "2026-02-06T21:47:43.1092698Z",
"PublicationDate": "2026-02-06T21:47:43.1092698Z",
"DateCreated": "2026-02-06T21:47:43.1092698Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 5",
"UrlName": "sample string 6",
"ItemDefaultUrl": "sample string 7",
"Position": 8.0,
"Title": "sample string 9",
"ParentId": "db67524a-68f9-45af-825a-718d0068d04b",
"Provider": "sample string 11",
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2026-02-06T21:47:43.1092698+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": "2026-02-06T21:47:43.1092698Z",
"PublicationDate": "2026-02-06T21:47:43.1092698Z",
"DateCreated": "2026-02-06T21:47:43.1092698Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 5",
"UrlName": "sample string 6",
"ItemDefaultUrl": "sample string 7",
"Position": 8.0,
"Title": "sample string 9",
"ParentId": "857fff99-8fc1-4385-b7b5-793af5216310",
"Provider": "sample string 11",
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2026-02-06T21:47:43.1092698+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": "86203830-c8ec-4b9c-bffc-d24d78b500eb"
}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": "2026-02-06T21:47:43.1092698Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 3",
"UrlName": "sample string 4",
"Position": 5.0,
"Title": "sample string 6",
"ParentId": "bdad2711-a7ff-4ec4-93db-c7953ae8bc2b"
}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": "2026-02-06T21:47:43.1092698Z",
"PublicationDate": "2026-02-06T21:47:43.1092698Z",
"DateCreated": "2026-02-06T21:47:43.1092698Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 5",
"UrlName": "sample string 6",
"ItemDefaultUrl": "sample string 7",
"Position": 8.0,
"Title": "sample string 9",
"ParentId": "e47f0261-c90c-4ce7-b106-bc949f2dfa7c",
"Provider": "sample string 11",
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2026-02-06T21:47:43.1092698+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": "2026-02-06T21:47:43.1092698Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 3",
"UrlName": "sample string 4",
"Position": 5.0,
"Title": "sample string 6",
"ParentId": "6fa2809a-6c2a-44fd-b5f8-7d81eb311a19"
}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": "2026-02-06T21:47:43.1092698Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 3",
"UrlName": "sample string 4",
"Position": 5.0,
"Title": "sample string 6",
"ParentId": "60831823-dd9e-40ed-80f7-aee19b04fc2d"
}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": "2026-02-06T21:47:43.1092698Z",
"PublicationDate": "2026-02-06T21:47:43.1092698Z",
"DateCreated": "2026-02-06T21:47:43.1092698Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 5",
"UrlName": "sample string 6",
"ItemDefaultUrl": "sample string 7",
"Summary": "sample string 8",
"Title": "sample string 9",
"healthtopics": "4d8de114-b527-4641-af06-713e1e316e6b",
"MoreInfo": "sample string 11",
"Notes": "sample string 12",
"ReferenceLinks": "sample string 13",
"publishingoffices": "885e4af0-a09e-40f2-b751-3ed76283e541",
"Content": "sample string 15",
"regionscountries": "cb0e158a-1878-48ee-839d-47500a9364c2",
"Provider": "sample string 17",
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2026-02-06T21:47:43.1092698+00:00",
"ProfilePictureUrl": "sample string 4",
"ProfilePictureThumbnailUrl": "sample string 5"
}
},
{
"LastModified": "2026-02-06T21:47:43.1092698Z",
"PublicationDate": "2026-02-06T21:47:43.1092698Z",
"DateCreated": "2026-02-06T21:47:43.1092698Z",
"IncludeInSitemap": true,
"SystemSourceKey": "sample string 5",
"UrlName": "sample string 6",
"ItemDefaultUrl": "sample string 7",
"Summary": "sample string 8",
"Title": "sample string 9",
"healthtopics": "4d8de114-b527-4641-af06-713e1e316e6b",
"MoreInfo": "sample string 11",
"Notes": "sample string 12",
"ReferenceLinks": "sample string 13",
"publishingoffices": "885e4af0-a09e-40f2-b751-3ed76283e541",
"Content": "sample string 15",
"regionscountries": "cb0e158a-1878-48ee-839d-47500a9364c2",
"Provider": "sample string 17",
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2026-02-06T21:47:43.1092698+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.