POST BaseData/SaveConfigItem
Request Information
URI Parameters
None.
Body Parameters
SaveConfigItemInput| Name | Description | Type | Additional information |
|---|---|---|---|
| IID | integer |
None. |
|
| Type | integer |
None. |
|
| Name | string |
None. |
|
| TypeName | string |
None. |
|
| Remark | string |
None. |
|
| creator | string |
None. |
|
| modifier | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"IID": 1,
"Type": 2,
"Name": "sample string 3",
"TypeName": "sample string 4",
"Remark": "sample string 5",
"creator": "sample string 6",
"modifier": "sample string 7"
}
application/xml, text/xml
Sample:
<SaveConfigItemInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WeldingAPI.Models.Request.BaseData"> <IID>1</IID> <Name>sample string 3</Name> <Remark>sample string 5</Remark> <Type>2</Type> <TypeName>sample string 4</TypeName> <creator>sample string 6</creator> <modifier>sample string 7</modifier> </SaveConfigItemInput>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
BaseResult| Name | Description | Type | Additional information |
|---|---|---|---|
| Success | integer |
None. |
|
| Msg | string |
None. |
|
| Token | string |
None. |
|
| Key | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Success": 1,
"Msg": "sample string 2",
"Token": "sample string 3",
"Key": "sample string 4"
}
application/xml, text/xml
Sample:
<BaseResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WeldingAPI.Models"> <Key>sample string 4</Key> <Msg>sample string 2</Msg> <Success>1</Success> <Token>sample string 3</Token> </BaseResult>