POST api/Sequence

Request Information

URI Parameters

None.

Body Parameters

SequenceCreatorDto
NameDescriptionTypeAdditional information
Name

string

None.

Value

integer

None.

StartWith

integer

None.

IncrementBy

integer

None.

MinimumValue

integer

None.

MaximumValue

integer

None.

Cycle

boolean

None.

Profile

string

None.

MetaDataJson

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Name": "sample string 1",
  "Value": 2,
  "StartWith": 3,
  "IncrementBy": 4,
  "MinimumValue": 5,
  "MaximumValue": 6,
  "Cycle": true,
  "Profile": "sample string 8",
  "MetaDataJson": "sample string 9"
}

application/xml, text/xml

Sample:
<SequenceCreatorDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SerialGenerator.Models">
  <Cycle>true</Cycle>
  <IncrementBy>4</IncrementBy>
  <MaximumValue>6</MaximumValue>
  <MetaDataJson>sample string 9</MetaDataJson>
  <MinimumValue>5</MinimumValue>
  <Name>sample string 1</Name>
  <Profile>sample string 8</Profile>
  <StartWith>3</StartWith>
  <Value>2</Value>
</SequenceCreatorDto>

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.