POST api/Administrator/Client/Module/Update?clientModuleId={clientModuleId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
clientModuleId

string

Required

Body Parameters

ModuleApiModel
NameDescriptionTypeAdditional information
EncId

string

None.

ModuleName

string

Required

Max length: 250

ModulePrice

decimal number

None.

ModuleType

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "EncId": "sample string 1",
  "ModuleName": "sample string 2",
  "ModulePrice": 3.0,
  "ModuleType": 4
}

application/xml, text/xml

Sample:
<ModuleApiModel xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <EncId>sample string 1</EncId>
  <ModuleName>sample string 2</ModuleName>
  <ModulePrice>3</ModulePrice>
  <ModuleType>4</ModuleType>
</ModuleApiModel>

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

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json

Sample:

Sample not available.