PUT example/api/Content/{id}

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

Updates a Content.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

Id of the Content to update.

integer

Required

Body Parameters

Sets the Theme associated with the Content.

UpdateContentArgs
NameDescriptionTypeAdditional information
BackgroundColor

Sets the background color.

string

None.

ContentData

Sets the content data.

string

None.

ContentType

Sets the content type.

ContentType

None.

LayoutId

Sets the Layout associated with the Content.

integer

None.

ThemeId

Sets the Theme associated with the Content.

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "BackgroundColor": "sample string 1",
  "ContentData": "sample string 2",
  "ContentType": 0,
  "LayoutId": 1,
  "ThemeId": 1
}

application/xml, text/xml

Sample:
<UpdateContentArgs xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Netoptions.BizWizard.Api.Common.Models.Content">
  <BackgroundColor>sample string 1</BackgroundColor>
  <ContentData>sample string 2</ContentData>
  <ContentType>HtmlMail</ContentType>
  <LayoutId>1</LayoutId>
  <ThemeId>1</ThemeId>
</UpdateContentArgs>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

The updated 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:39:40.8988775+01:00",
  "BackgroundColor": "sample string 4",
  "ContentData": "sample string 5",
  "ContentType": 0,
  "LayoutId": 1,
  "ThemeId": 1,
  "ContentGuid": "e2d81f53-2e46-4f09-af2e-89355467e53a"
}

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>e2d81f53-2e46-4f09-af2e-89355467e53a</ContentGuid>
  <ContentType>HtmlMail</ContentType>
  <CreatedByUserId>2</CreatedByUserId>
  <CreationDate>2024-11-21T17:39:40.8988775+01:00</CreationDate>
  <Id>1</Id>
  <LayoutId>1</LayoutId>
  <ThemeId>1</ThemeId>
</ContentModel>