POST api/AutoCode/SaveCodeList

Request Information

URI Parameters

None.

Body Parameters

Collection of AutoCodeSaveDto
NameDescriptionTypeAdditional information
ScreenCode

string

None.

NewCode

string

None.

Request Formats

application/json, text/json

Sample:
[
  {
    "screenCode": "sample string 1",
    "newCode": "sample string 2"
  },
  {
    "screenCode": "sample string 1",
    "newCode": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfAutoCodeSaveDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TP.TulTrack.Core.Autocode">
  <AutoCodeSaveDto>
    <NewCode>sample string 2</NewCode>
    <ScreenCode>sample string 1</ScreenCode>
  </AutoCodeSaveDto>
  <AutoCodeSaveDto>
    <NewCode>sample string 2</NewCode>
    <ScreenCode>sample string 1</ScreenCode>
  </AutoCodeSaveDto>
</ArrayOfAutoCodeSaveDto>

application/x-www-form-urlencoded

Sample:

Sample not available.

text/html

Sample:
[{"screenCode":"sample string 1","newCode":"sample string 2"},{"screenCode":"sample string 1","newCode":"sample string 2"}]

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.