POST api/excel_upload/Remove_field
Request Information
URI Parameters
None.
Body Parameters
NewField| Name | Description | Type | Additional information |
|---|---|---|---|
| DataSourceId | globally unique identifier |
None. |
|
| Name | string |
None. |
|
| Title | string |
None. |
|
| DataType | string |
None. |
|
| Expression | string |
None. |
|
| IsModify | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"dataSourceId": "2e4f7f6e-cdf0-4724-9658-50fe3e091ae6",
"name": "sample string 2",
"title": "sample string 3",
"dataType": "sample string 4",
"expression": "sample string 5",
"isModify": true
}
application/xml, text/xml
Sample:
<NewField xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Margin.Models"> <DataSourceId>2e4f7f6e-cdf0-4724-9658-50fe3e091ae6</DataSourceId> <DataType>sample string 4</DataType> <Expression>sample string 5</Expression> <IsModify>true</IsModify> <Name>sample string 2</Name> <Title>sample string 3</Title> </NewField>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ApiResult| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | ApiResultStatus |
None. |
|
| Data | Object |
None. |
|
| Message | string |
None. |
|
| Code | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"status": "success",
"data": {},
"message": "sample string 2",
"code": 1
}
application/xml, text/xml
Sample:
<ApiResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Margin.Models"> <Code>1</Code> <Data /> <Message>sample string 2</Message> <Status>Success</Status> </ApiResult>