Returns a set of data items of type widgetpresets.
GET /api/default/widgetpresets
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 | |
| Title | System.String | Read only: False | |
| Data | System.String | Read only: True | |
| DateCreated | System.DateTimeOffset | Read only: True | |
| Provider | System.String | Read only: True | |
| Comments | Telerik.Sitefinity.Services.Comments.CommentContract | Read only: True | |
| Thumbnail | System.String | Read only: False |
application/json
[
{
"LastModified": "2026-09-20T23:28:00.6572155Z",
"Title": "sample string 2",
"Data": "sample string 3",
"DateCreated": "2026-09-20T23:28:00.6572906Z",
"Provider": "sample string 5",
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2026-09-20T23:28:00.6572906+00:00",
"ProfilePictureUrl": "sample string 4",
"ProfilePictureThumbnailUrl": "sample string 5"
},
"Thumbnail": "sample string 6"
},
{
"LastModified": "2026-09-20T23:28:00.6572155Z",
"Title": "sample string 2",
"Data": "sample string 3",
"DateCreated": "2026-09-20T23:28:00.6572906Z",
"Provider": "sample string 5",
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2026-09-20T23:28:00.6572906+00:00",
"ProfilePictureUrl": "sample string 4",
"ProfilePictureThumbnailUrl": "sample string 5"
},
"Thumbnail": "sample string 6"
}
]Gets widgetpresets item by id.
GET /api/default/widgetpresets({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 | |
| Title | System.String | Read only: False | |
| Data | System.String | Read only: True | |
| DateCreated | System.DateTimeOffset | Read only: True | |
| Provider | System.String | Read only: True | |
| Comments | Telerik.Sitefinity.Services.Comments.CommentContract | Read only: True | |
| Thumbnail | System.String | Read only: False |
application/json
{
"LastModified": "2026-09-20T23:28:00.6572906Z",
"Title": "sample string 2",
"Data": "sample string 3",
"DateCreated": "2026-09-20T23:28:00.6572906Z",
"Provider": "sample string 5",
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2026-09-20T23:28:00.6572906+00:00",
"ProfilePictureUrl": "sample string 4",
"ProfilePictureThumbnailUrl": "sample string 5"
},
"Thumbnail": "sample string 6"
}Gets Id property from widgetpresets item.
GET /api/default/widgetpresets({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": "1f658a3c-ae4f-4f4e-92a1-9e00153e62b4"
}Creates a widgetpresets item.
POST /api/default/widgetpresets
None
| Name | Description | Type | Additional Information |
| LastModified | System.DateTimeOffset | Read only: True | |
| Title | System.String | Read only: False | |
| Data | System.String | Read only: True | |
| DateCreated | System.DateTimeOffset | Read only: True | |
| Provider | System.String | Read only: True | |
| Comments | Telerik.Sitefinity.Services.Comments.CommentContract | Read only: True | |
| Thumbnail | System.String | Read only: False |
application/json
{
"Title": "sample string 1",
"Thumbnail": "sample string 2"
}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 | |
| Title | System.String | Read only: False | |
| Data | System.String | Read only: True | |
| DateCreated | System.DateTimeOffset | Read only: True | |
| Provider | System.String | Read only: True | |
| Comments | Telerik.Sitefinity.Services.Comments.CommentContract | Read only: True | |
| Thumbnail | System.String | Read only: False |
application/json
{
"LastModified": "2026-09-20T23:28:00.65759Z",
"Title": "sample string 2",
"Data": "sample string 3",
"DateCreated": "2026-09-20T23:28:00.65759Z",
"Provider": "sample string 5",
"Comments": {
"Name": "sample string 1",
"Message": "sample string 2",
"DateCreated": "2026-09-20T23:28:00.65759+00:00",
"ProfilePictureUrl": "sample string 4",
"ProfilePictureThumbnailUrl": "sample string 5"
},
"Thumbnail": "sample string 6"
}Partial update for widgetpresets item.
PATCH /api/default/widgetpresets({key})
| Name | Description | Type | Additional Information |
| key | System.Guid | Required |
| Name | Description | Type | Additional Information |
| LastModified | System.DateTimeOffset | Read only: True | |
| Title | System.String | Read only: False | |
| Data | System.String | Read only: True | |
| DateCreated | System.DateTimeOffset | Read only: True | |
| Provider | System.String | Read only: True | |
| Comments | Telerik.Sitefinity.Services.Comments.CommentContract | Read only: True | |
| Thumbnail | System.String | Read only: False |
application/json
{
"Title": "sample string 1",
"Thumbnail": "sample string 2"
}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 widgetpresets item.
PUT /api/default/widgetpresets({key})
| Name | Description | Type | Additional Information |
| key | System.Guid | Required |
| Name | Description | Type | Additional Information |
| LastModified | System.DateTimeOffset | Read only: True | |
| Title | System.String | Read only: False | |
| Data | System.String | Read only: True | |
| DateCreated | System.DateTimeOffset | Read only: True | |
| Provider | System.String | Read only: True | |
| Comments | Telerik.Sitefinity.Services.Comments.CommentContract | Read only: True | |
| Thumbnail | System.String | Read only: False |
application/json
{
"Title": "sample string 1",
"Thumbnail": "sample string 2"
}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 widgetpresets item by Id.
DELETE /api/default/widgetpresets({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.