RESTful API

Content blocks

Get contentitems

Returns a set of data items of type contentitems.

Copy GET /api/multimedias/contentitems
Request Informaion

URI Parameters

None

Body Parameters

None

Request Formats

None.

Response Informaion

Resource Description

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
Selected by default: True

PublicationDate

System.DateTimeOffset

Read only: False
Selected by default: True

Title

System.String

Read only: False
Selected by default: True

Description

System.String

Read only: False
Selected by default: True

DateCreated

System.DateTimeOffset

Read only: True
Selected by default: True

IncludeInSitemap

System.Boolean

Read only: False
Selected by default: True

SystemSourceKey

System.String

Read only: False
Selected by default: True

UrlName

System.String

Read only: False
Selected by default: True

Category

System.Guid

Read only: False
Selected by default: False

Tags

System.Guid

Read only: False
Selected by default: False

AllowComments

System.Boolean

Read only: False
Selected by default: True

Name

System.String

Read only: False
Selected by default: True

Content

System.String

Read only: False
Selected by default: True

Author

System.String

Read only: False
Selected by default: True

Provider

System.String

Read only: True
Selected by default: True

Comments

Telerik.Sitefinity.Services.Comments.CommentContract

Read only: True
Selected by default: False

Resource Format

Response Formats
Copy
application/json
[
  {
    "LastModified": "2025-09-12T09:16:31.4709717Z",
    "PublicationDate": "2025-09-12T09:16:31.4709717Z",
    "Title": "sample string 3",
    "Description": "sample string 4",
    "DateCreated": "2025-09-12T09:16:31.4709717Z",
    "IncludeInSitemap": true,
    "SystemSourceKey": "sample string 7",
    "UrlName": "sample string 8",
    "Category": "5d489312-c640-4b88-a4d5-41ca9888a250",
    "Tags": "d84b74d6-d8e7-4749-9dd0-f9335675a5ba",
    "AllowComments": true,
    "Name": "sample string 12",
    "Content": "sample string 13",
    "Author": "sample string 14",
    "Provider": "sample string 15",
    "Comments": {
      "Name": "sample string 1",
      "Message": "sample string 2",
      "DateCreated": "2025-09-12T09:16:31.4709717+00:00",
      "ProfilePictureUrl": "sample string 4",
      "ProfilePictureThumbnailUrl": "sample string 5"
    }
  },
  {
    "LastModified": "2025-09-12T09:16:31.4709717Z",
    "PublicationDate": "2025-09-12T09:16:31.4709717Z",
    "Title": "sample string 3",
    "Description": "sample string 4",
    "DateCreated": "2025-09-12T09:16:31.4709717Z",
    "IncludeInSitemap": true,
    "SystemSourceKey": "sample string 7",
    "UrlName": "sample string 8",
    "Category": "5d489312-c640-4b88-a4d5-41ca9888a250",
    "Tags": "d84b74d6-d8e7-4749-9dd0-f9335675a5ba",
    "AllowComments": true,
    "Name": "sample string 12",
    "Content": "sample string 13",
    "Author": "sample string 14",
    "Provider": "sample string 15",
    "Comments": {
      "Name": "sample string 1",
      "Message": "sample string 2",
      "DateCreated": "2025-09-12T09:16:31.4709717+00:00",
      "ProfilePictureUrl": "sample string 4",
      "ProfilePictureThumbnailUrl": "sample string 5"
    }
  }
]

Get contentitems by key

Gets contentitems item by id.

Copy GET /api/multimedias/contentitems({key})
Request Informaion

URI Parameters

Name Description Type Additional Information
key

System.Guid

Required

Body Parameters

None

Request Formats

None.

Response Informaion

Resource Description

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
Selected by default: True

PublicationDate

System.DateTimeOffset

Read only: False
Selected by default: True

Title

System.String

Read only: False
Selected by default: True

Description

System.String

Read only: False
Selected by default: True

DateCreated

System.DateTimeOffset

Read only: True
Selected by default: True

IncludeInSitemap

System.Boolean

Read only: False
Selected by default: True

SystemSourceKey

System.String

Read only: False
Selected by default: True

UrlName

System.String

Read only: False
Selected by default: True

Category

System.Guid

Read only: False
Selected by default: False

Tags

System.Guid

Read only: False
Selected by default: False

AllowComments

System.Boolean

Read only: False
Selected by default: True

Name

System.String

Read only: False
Selected by default: True

Content

System.String

Read only: False
Selected by default: True

Author

System.String

Read only: False
Selected by default: True

Provider

System.String

Read only: True
Selected by default: True

Comments

Telerik.Sitefinity.Services.Comments.CommentContract

Read only: True
Selected by default: False

Resource Format

Response Formats
Copy
application/json
{
  "LastModified": "2025-09-12T09:16:31.4709717Z",
  "PublicationDate": "2025-09-12T09:16:31.4709717Z",
  "Title": "sample string 3",
  "Description": "sample string 4",
  "DateCreated": "2025-09-12T09:16:31.4709717Z",
  "IncludeInSitemap": true,
  "SystemSourceKey": "sample string 7",
  "UrlName": "sample string 8",
  "Category": "886a77e2-e5aa-442f-bca6-4190368bd7ff",
  "Tags": "7df874c1-b3bb-4fff-bbe2-d2c39584c0d0",
  "AllowComments": true,
  "Name": "sample string 12",
  "Content": "sample string 13",
  "Author": "sample string 14",
  "Provider": "sample string 15",
  "Comments": {
    "Name": "sample string 1",
    "Message": "sample string 2",
    "DateCreated": "2025-09-12T09:16:31.4709717+00:00",
    "ProfilePictureUrl": "sample string 4",
    "ProfilePictureThumbnailUrl": "sample string 5"
  }
}

Get property

Gets Id property from contentitems item.

Copy GET /api/multimedias/contentitems({key})/property
Request Informaion

URI Parameters

Name Description Type Additional Information
key

System.Guid

Required

property

System.String

Required

Body Parameters

None

Request Formats

None.

Response Informaion

Resource Description

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

Resource Format

Response Formats
Copy
application/json
{
  "Id": "90c46a9e-d967-4c36-9c5d-8a375bbcef8a"
}

Post contentitems

Creates a contentitems item.

Copy POST /api/multimedias/contentitems
Request Informaion

URI Parameters

None

Body Parameters

Name Description Type Additional Information
LastModified

System.DateTimeOffset

Read only: True
Selected by default: True

PublicationDate

System.DateTimeOffset

Read only: False
Selected by default: True

Title

System.String

Read only: False
Selected by default: True

Description

System.String

Read only: False
Selected by default: True

DateCreated

System.DateTimeOffset

Read only: True
Selected by default: True

IncludeInSitemap

System.Boolean

Read only: False
Selected by default: True

SystemSourceKey

System.String

Read only: False
Selected by default: True

UrlName

System.String

Read only: False
Selected by default: True

Category

System.Guid

Read only: False
Selected by default: False

Tags

System.Guid

Read only: False
Selected by default: False

AllowComments

System.Boolean

Read only: False
Selected by default: True

Name

System.String

Read only: False
Selected by default: True

Content

System.String

Read only: False
Selected by default: True

Author

System.String

Read only: False
Selected by default: True

Provider

System.String

Read only: True
Selected by default: True

Comments

Telerik.Sitefinity.Services.Comments.CommentContract

Read only: True
Selected by default: False

Request Formats
Copy
application/json
{
  "PublicationDate": "2025-09-12T09:16:31.4709717Z",
  "Title": "sample string 2",
  "Description": "sample string 3",
  "IncludeInSitemap": true,
  "SystemSourceKey": "sample string 5",
  "UrlName": "sample string 6",
  "Category": "96cb82ba-359f-4b16-b23e-2368c78f2968",
  "Tags": "b9163303-b2c3-41d0-a5ec-0c35a34257ad",
  "AllowComments": true,
  "Name": "sample string 10",
  "Content": "sample string 11",
  "Author": "sample string 12"
}
Response Informaion

Resource Description

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
Selected by default: True

PublicationDate

System.DateTimeOffset

Read only: False
Selected by default: True

Title

System.String

Read only: False
Selected by default: True

Description

System.String

Read only: False
Selected by default: True

DateCreated

System.DateTimeOffset

Read only: True
Selected by default: True

IncludeInSitemap

System.Boolean

Read only: False
Selected by default: True

SystemSourceKey

System.String

Read only: False
Selected by default: True

UrlName

System.String

Read only: False
Selected by default: True

Category

System.Guid

Read only: False
Selected by default: False

Tags

System.Guid

Read only: False
Selected by default: False

AllowComments

System.Boolean

Read only: False
Selected by default: True

Name

System.String

Read only: False
Selected by default: True

Content

System.String

Read only: False
Selected by default: True

Author

System.String

Read only: False
Selected by default: True

Provider

System.String

Read only: True
Selected by default: True

Comments

Telerik.Sitefinity.Services.Comments.CommentContract

Read only: True
Selected by default: False

Resource Format

Response Formats
Copy
application/json
{
  "LastModified": "2025-09-12T09:16:31.4709717Z",
  "PublicationDate": "2025-09-12T09:16:31.4709717Z",
  "Title": "sample string 3",
  "Description": "sample string 4",
  "DateCreated": "2025-09-12T09:16:31.4709717Z",
  "IncludeInSitemap": true,
  "SystemSourceKey": "sample string 7",
  "UrlName": "sample string 8",
  "Category": "4c8fdca5-f387-42ff-be35-b7f2f4792c7b",
  "Tags": "c5705c3c-2b97-41c9-ba34-69ef2bad6783",
  "AllowComments": true,
  "Name": "sample string 12",
  "Content": "sample string 13",
  "Author": "sample string 14",
  "Provider": "sample string 15",
  "Comments": {
    "Name": "sample string 1",
    "Message": "sample string 2",
    "DateCreated": "2025-09-12T09:16:31.4709717+00:00",
    "ProfilePictureUrl": "sample string 4",
    "ProfilePictureThumbnailUrl": "sample string 5"
  }
}

Patch contentitems by key

Partial update for contentitems item.

Copy PATCH /api/multimedias/contentitems({key})
Request Informaion

URI Parameters

Name Description Type Additional Information
key

System.Guid

Required

Body Parameters

Name Description Type Additional Information
LastModified

System.DateTimeOffset

Read only: True
Selected by default: True

PublicationDate

System.DateTimeOffset

Read only: False
Selected by default: True

Title

System.String

Read only: False
Selected by default: True

Description

System.String

Read only: False
Selected by default: True

DateCreated

System.DateTimeOffset

Read only: True
Selected by default: True

IncludeInSitemap

System.Boolean

Read only: False
Selected by default: True

SystemSourceKey

System.String

Read only: False
Selected by default: True

UrlName

System.String

Read only: False
Selected by default: True

Category

System.Guid

Read only: False
Selected by default: False

Tags

System.Guid

Read only: False
Selected by default: False

AllowComments

System.Boolean

Read only: False
Selected by default: True

Name

System.String

Read only: False
Selected by default: True

Content

System.String

Read only: False
Selected by default: True

Author

System.String

Read only: False
Selected by default: True

Provider

System.String

Read only: True
Selected by default: True

Comments

Telerik.Sitefinity.Services.Comments.CommentContract

Read only: True
Selected by default: False

Request Formats
Copy
application/json
{
  "PublicationDate": "2025-09-12T09:16:31.4709717Z",
  "Title": "sample string 2",
  "Description": "sample string 3",
  "IncludeInSitemap": true,
  "SystemSourceKey": "sample string 5",
  "UrlName": "sample string 6",
  "Category": "680f05d8-068a-4678-831f-95ed33121d1e",
  "Tags": "0004fd4e-3679-4677-9009-b33d2200a394",
  "AllowComments": true,
  "Name": "sample string 10",
  "Content": "sample string 11",
  "Author": "sample string 12"
}
Response Informaion

Resource Description

Method can return success code: NoContent - 204 or one of these error codes: BadRequest - 400, NotFound - 404, NotImplemented - 501, InternalServerError - 500, Unauthorized - 401.

Resource Format

Response Formats

None.

Put contentitems by key

Full update for contentitems item.

Copy PUT /api/multimedias/contentitems({key})
Request Informaion

URI Parameters

Name Description Type Additional Information
key

System.Guid

Required

Body Parameters

Name Description Type Additional Information
LastModified

System.DateTimeOffset

Read only: True
Selected by default: True

PublicationDate

System.DateTimeOffset

Read only: False
Selected by default: True

Title

System.String

Read only: False
Selected by default: True

Description

System.String

Read only: False
Selected by default: True

DateCreated

System.DateTimeOffset

Read only: True
Selected by default: True

IncludeInSitemap

System.Boolean

Read only: False
Selected by default: True

SystemSourceKey

System.String

Read only: False
Selected by default: True

UrlName

System.String

Read only: False
Selected by default: True

Category

System.Guid

Read only: False
Selected by default: False

Tags

System.Guid

Read only: False
Selected by default: False

AllowComments

System.Boolean

Read only: False
Selected by default: True

Name

System.String

Read only: False
Selected by default: True

Content

System.String

Read only: False
Selected by default: True

Author

System.String

Read only: False
Selected by default: True

Provider

System.String

Read only: True
Selected by default: True

Comments

Telerik.Sitefinity.Services.Comments.CommentContract

Read only: True
Selected by default: False

Request Formats
Copy
application/json
{
  "PublicationDate": "2025-09-12T09:16:31.4709717Z",
  "Title": "sample string 2",
  "Description": "sample string 3",
  "IncludeInSitemap": true,
  "SystemSourceKey": "sample string 5",
  "UrlName": "sample string 6",
  "Category": "2b9f9195-bd29-41b7-a0e7-b7a9425e6412",
  "Tags": "750505de-61c0-46c3-8b33-1bddceb060f5",
  "AllowComments": true,
  "Name": "sample string 10",
  "Content": "sample string 11",
  "Author": "sample string 12"
}
Response Informaion

Resource Description

Method can return success code: NoContent - 204 or one of these error codes: BadRequest - 400, NotFound - 404, NotImplemented - 501, InternalServerError - 500, Unauthorized - 401.

Resource Format

Response Formats

None.

Delete contentitems by key

Deletes a contentitems item by Id.

Copy DELETE /api/multimedias/contentitems({key})
Request Informaion

URI Parameters

Name Description Type Additional Information
key

System.Guid

Required

Body Parameters

None

Request Formats

None.

Response Informaion

Resource Description

Method can return success code: NoContent - 204 or one of these error codes: BadRequest - 400, NotFound - 404, NotImplemented - 501, InternalServerError - 500, Unauthorized - 401.

Resource Format

Response Formats

None.