POST api/bo/modules
Create Module
Request Information
URI Parameters
None.
Body Parameters
m_moduleName | Description | Type | Additional 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 |
Request Formats
application/json, text/json
Sample:
{ "ModuleName": "sample string 1", "ModuleIcon": "sample string 2", "ModuleDetail": "sample string 3", "ModulePath": "sample string 4" }
application/xml, text/xml
Sample:
<m_module 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> <ModuleIcon>sample string 2</ModuleIcon> <ModuleName>sample string 1</ModuleName> <ModulePath>sample string 4</ModulePath> </m_module>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.