PUT api/v3/poet/drafts/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

UpdateDraftRequest
NameDescriptionTypeAdditional information
content

string

None.

keyName

string

None.

categoryId

integer

None.

rowVersion

string

None.

localId

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "content": "sample string 1",
  "keyName": "sample string 2",
  "categoryId": 3,
  "rowVersion": "sample string 4",
  "localId": 5
}

application/xml, text/xml

Sample:
<UpdateDraftRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PoetAPI.Controllers.V3.Models">
  <categoryId>3</categoryId>
  <content>sample string 1</content>
  <keyName>sample string 2</keyName>
  <localId>5</localId>
  <rowVersion>sample string 4</rowVersion>
</UpdateDraftRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.