POST api/Administrator/Module/Update?id={id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | string |
Required |
Body Parameters
ModuleApiModel| Name | Description | Type | Additional 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:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json
Sample:
Sample not available.