POST api/DMS/updatesequencenumber

Request Information

URI Parameters

None.

Body Parameters

Node
NameDescriptionTypeAdditional information
ParentId

integer

None.

SequenceId

integer

None.

Move

string

None.

Request Formats

application/json, text/json

Sample:
{
  "ParentId": 1,
  "SequenceId": 2,
  "Move": "sample string 3"
}

application/xml, text/xml

Sample:
<Node xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IMBS.DO.Models">
  <Move>sample string 3</Move>
  <ParentId>1</ParentId>
  <SequenceId>2</SequenceId>
</Node>

multipart/form-data

Sample:
<Node xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IMBS.DO.Models"><Move>sample string 3</Move><ParentId>1</ParentId><SequenceId>2</SequenceId></Node>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'Node'.

Response Information

Resource Description

boolean

Response Formats

application/json, text/json

Sample:
true

application/xml, text/xml, multipart/form-data

Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>