POST api/structure/multiassociatedusersdel

删除用户关联关系

Request Information

URI Parameters

None.

Body Parameters

DelUserStructure
NameDescriptionTypeAdditional information
Lus

组织架构集合

Collection of UserStructure

None.

Request Formats

application/json, text/json

Sample:
{
  "Lus": [
    {
      "StructureId": 1,
      "MemberId": "sample string 2",
      "MemberType": 3,
      "Path": "sample string 4"
    },
    {
      "StructureId": 1,
      "MemberId": "sample string 2",
      "MemberType": 3,
      "Path": "sample string 4"
    }
  ]
}

text/html

Sample:
{"Lus":[{"StructureId":1,"MemberId":"sample string 2","MemberType":3,"Path":"sample string 4"},{"StructureId":1,"MemberId":"sample string 2","MemberType":3,"Path":"sample string 4"}]}

application/xml, text/xml

Sample:
<DelUserStructure xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BJ.Data">
  <Lus>
    <UserStructure>
      <MemberId>sample string 2</MemberId>
      <MemberType>3</MemberType>
      <Path>sample string 4</Path>
      <StructureId>1</StructureId>
    </UserStructure>
    <UserStructure>
      <MemberId>sample string 2</MemberId>
      <MemberType>3</MemberType>
      <Path>sample string 4</Path>
      <StructureId>1</StructureId>
    </UserStructure>
  </Lus>
</DelUserStructure>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

删除用户关联关系

JsonRtnDtoOfBoolean
NameDescriptionTypeAdditional information
Msg

string

None.

State

RtnState

None.

Data

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "Msg": "sample string 1",
  "State": 100,
  "Data": true
}

text/html

Sample:
{"Msg":"sample string 1","State":100,"Data":true}

application/xml, text/xml

Sample:
<JsonRtnDtoOfboolean xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BJ.Services">
  <Data>true</Data>
  <Msg>sample string 1</Msg>
  <State>Display</State>
</JsonRtnDtoOfboolean>

text/javascript, application/javascript, application/json-p

Sample:
/**/ typeof  === 'function' && ({"Msg":"sample string 1","State":100,"Data":true});