PUT v1/Article/{articleKey}/Creator/{creatorKey}

Update an existing Creator.

Roles Allowed

admin, editor

Request Information

URI Parameters

NameDescriptionTypeAdditional information
articleKey

integer

Required

creatorKey

integer

Required

Body Parameters

The Creator name to save for the existing creator

string

Request Formats

application/json, text/json

Sample:
"sample string 1"

application/xml, text/xml

Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

HTTP 200 with Updated Creator if found, HTTP 404 otherwise, HTTP 409 if validation fails

ArticleCreator
NameDescriptionTypeAdditional information
ArticleCreatorKey

Unique identifier for a Creator

integer

None.

Creator

The name of the Creator

string

None.

Response Formats

application/json, text/json

Sample:
{
  "ArticleCreatorKey": 1,
  "Creator": "sample string 2"
}

application/xml, text/xml

Sample:
<ArticleCreator xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Bondi.Models.V3.ApiDto">
  <Creator>sample string 2</Creator>
  <ArticleCreatorKey>1</ArticleCreatorKey>
</ArticleCreator>