PUT api/bo/modules/{moduleId}

Update Module

Request Information

URI Parameters

NameDescriptionTypeAdditional information
moduleId

integer

Required

Body Parameters

m_module_update
NameDescriptionTypeAdditional information
ModuleName

string

Required

String length: inclusive between 0 and 50

ModuleIcon

string

String length: inclusive between 0 and 50

ModuleDetail

string

String length: inclusive between 0 and 400

ModulePath

string

Required

String length: inclusive between 0 and 50

ModuleEnable

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "ModuleName": "sample string 1",
  "ModuleIcon": "sample string 2",
  "ModuleDetail": "sample string 3",
  "ModulePath": "sample string 4",
  "ModuleEnable": true
}

application/xml, text/xml

Sample:
<m_module_update xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/KFA.Modules.Models.Backoffice">
  <ModuleDetail>sample string 3</ModuleDetail>
  <ModuleEnable>true</ModuleEnable>
  <ModuleIcon>sample string 2</ModuleIcon>
  <ModuleName>sample string 1</ModuleName>
  <ModulePath>sample string 4</ModulePath>
</m_module_update>

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.