POST jxc_api/AssistData/BatchRemoveCategory

Request Information

URI Parameters

None.

Body Parameters

CategoryRemoveModel
NameDescriptionTypeAdditional information
Items

Collection of CategoryEditModel

None.

Request Formats

application/json, text/json

Sample:
{
  "Items": [
    {
      "Ftype": 1,
      "TypeId": 2,
      "TypeNo": "sample string 3",
      "TypeName": "sample string 4",
      "ParentId": 5,
      "SummaryKeywords": "sample string 6",
      "CashAAEID": 7,
      "OrderSn": 8,
      "IsEnable": true
    },
    {
      "Ftype": 1,
      "TypeId": 2,
      "TypeNo": "sample string 3",
      "TypeName": "sample string 4",
      "ParentId": 5,
      "SummaryKeywords": "sample string 6",
      "CashAAEID": 7,
      "OrderSn": 8,
      "IsEnable": true
    }
  ]
}

application/xml, text/xml

Sample:
<CategoryRemoveModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LemonScm.WebApi.Areas.BaseData.Models">
  <Items>
    <CategoryEditModel>
      <CashAAEID>7</CashAAEID>
      <Ftype>1</Ftype>
      <IsEnable>true</IsEnable>
      <OrderSn>8</OrderSn>
      <ParentId>5</ParentId>
      <SummaryKeywords>sample string 6</SummaryKeywords>
      <TypeId>2</TypeId>
      <TypeName>sample string 4</TypeName>
      <TypeNo>sample string 3</TypeNo>
    </CategoryEditModel>
    <CategoryEditModel>
      <CashAAEID>7</CashAAEID>
      <Ftype>1</Ftype>
      <IsEnable>true</IsEnable>
      <OrderSn>8</OrderSn>
      <ParentId>5</ParentId>
      <SummaryKeywords>sample string 6</SummaryKeywords>
      <TypeId>2</TypeId>
      <TypeName>sample string 4</TypeName>
      <TypeNo>sample string 3</TypeNo>
    </CategoryEditModel>
  </Items>
</CategoryRemoveModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

MessageModel
NameDescriptionTypeAdditional information
Success

boolean

None.

Message

string

None.

Data

Object

None.

StatusCode

StatusCode

None.

ErrorData

Object

None.

BusinessCode

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "Success": true,
  "Message": "sample string 2",
  "Data": {},
  "StatusCode": 100,
  "ErrorData": {},
  "BusinessCode": 5
}

application/xml, text/xml

Sample:
<MessageModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LemonScm.Model">
  <_x003C_BusinessCode_x003E_k__BackingField>5</_x003C_BusinessCode_x003E_k__BackingField>
  <_x003C_Data_x003E_k__BackingField />
  <_x003C_ErrorData_x003E_k__BackingField />
  <_x003C_Message_x003E_k__BackingField>sample string 2</_x003C_Message_x003E_k__BackingField>
  <_x003C_StatusCode_x003E_k__BackingField>CONTINUE</_x003C_StatusCode_x003E_k__BackingField>
  <_x003C_Success_x003E_k__BackingField>true</_x003C_Success_x003E_k__BackingField>
</MessageModel>