PUT example/api/Content/{id}/data

https://app.bwz.se/bedrock/example/api/Content/{id}/data

Sets the content data for a given Content.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

Id of the Content to update.

integer

Required

Body Parameters

The data

SetContentDataArgs
NameDescriptionTypeAdditional information
Data

The data

string

Required

Request Formats

application/json, text/json

Sample:
{
  "Data": "sample string 1"
}

application/xml, text/xml

Sample:
<SetContentDataArgs xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Netoptions.BizWizard.Api.Common.Models.Content">
  <Data>sample string 1</Data>
</SetContentDataArgs>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

A ContentModel.

ContentModel
NameDescriptionTypeAdditional information
Id

Id of the Content.

integer

None.

CreatedByUserId

Id of the User creating the Content.

integer

None.

CreationDate

Date and time the Content was created.

date

None.

BackgroundColor

Background color of the Content.

string

None.

ContentData

Content data of the Content.

string

None.

ContentType

Content type of the ContentModel.

ContentType

None.

LayoutId

Id of the Layout associated with the Content.

integer

None.

ThemeId

Id of the Theme associated with the Content.

integer

None.

ContentGuid

The Guid associated with the Content.

globally unique identifier

None.

Response Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "CreatedByUserId": 2,
  "CreationDate": "2024-11-21T17:04:32.2474582+01:00",
  "BackgroundColor": "sample string 4",
  "ContentData": "sample string 5",
  "ContentType": 0,
  "LayoutId": 1,
  "ThemeId": 1,
  "ContentGuid": "305eae66-0615-4d1b-9086-ca7c1db94eb6"
}

application/xml, text/xml

Sample:
<ContentModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Netoptions.BizWizard.Api.Common.Models">
  <BackgroundColor>sample string 4</BackgroundColor>
  <ContentData>sample string 5</ContentData>
  <ContentGuid>305eae66-0615-4d1b-9086-ca7c1db94eb6</ContentGuid>
  <ContentType>HtmlMail</ContentType>
  <CreatedByUserId>2</CreatedByUserId>
  <CreationDate>2024-11-21T17:04:32.2474582+01:00</CreationDate>
  <Id>1</Id>
  <LayoutId>1</LayoutId>
  <ThemeId>1</ThemeId>
</ContentModel>