POST _api/AMTAPI/SubmitConfig

Request Information

URI Parameters

None.

Body Parameters

ConfigModifyParam
NameDescriptionTypeAdditional information
Id

integer

Required

MakerId

integer

Required

CheckerId

integer

Required

Approver

boolean

Required

Username

string

Required

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "MakerId": 2,
  "CheckerId": 3,
  "Approver": true,
  "Username": "sample string 5"
}

application/xml, text/xml

Sample:
<ConfigModifyParam xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AMTAPI.Models">
  <Approver>true</Approver>
  <CheckerId>3</CheckerId>
  <Id>1</Id>
  <MakerId>2</MakerId>
  <Username>sample string 5</Username>
</ConfigModifyParam>

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 'ConfigModifyParam'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.