POST api/MDM/GetPersonListByOrgAndDealer?DomainId={DomainId}&AccountId={AccountId}&PersonId={PersonId}
获取架构经销商下面的人员
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
DomainId |
域Id |
globally unique identifier |
None. |
AccountId |
账户Id |
globally unique identifier |
None. |
PersonId |
人员Id |
globally unique identifier |
None. |
Body Parameters
PersonTransferDtoName | Description | Type | Additional information |
---|---|---|---|
pageIndex | integer |
None. |
|
pageSize | integer |
None. |
|
OrgID | globally unique identifier |
None. |
|
DealerIDList | Collection of string |
None. |
|
DutyList | Collection of string |
None. |
|
KeyWord | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "pageIndex": 1, "pageSize": 2, "OrgID": "ea2e11ee-be2a-4579-8edc-947d1240a8f3", "DealerIDList": [ "sample string 1", "sample string 2" ], "DutyList": [ "sample string 1", "sample string 2" ], "KeyWord": "sample string 3" }
application/xml, text/xml
Sample:
<PersonTransferDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JT.VSFA.Entity.DTO.ApiDTO"> <DealerIDList xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:string>sample string 1</d2p1:string> <d2p1:string>sample string 2</d2p1:string> </DealerIDList> <DutyList xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:string>sample string 1</d2p1:string> <d2p1:string>sample string 2</d2p1:string> </DutyList> <KeyWord>sample string 3</KeyWord> <OrgID>ea2e11ee-be2a-4579-8edc-947d1240a8f3</OrgID> <pageIndex>1</pageIndex> <pageSize>2</pageSize> </PersonTransferDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResultModelOfObjectName | Description | Type | Additional information |
---|---|---|---|
Code | ReturnCode |
None. |
|
Message | string |
None. |
|
Data | Object |
None. |
Response Formats
application/json, text/json
Sample:
{ "Code": 200, "Message": "sample string 1", "Data": {} }
application/xml, text/xml
Sample:
<ResultModelOfanyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JT.VSFA.Utility"> <Code>Success</Code> <Data /> <Message>sample string 1</Message> </ResultModelOfanyType>