POST api/Asset/getUnboundAssetList?DomainId={DomainId}&AccountId={AccountId}&PersonId={PersonId}
根据经销商ID 获取未绑定的资产信息
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
getUnboundAssetListDto| Name | Description | Type | Additional information |
|---|---|---|---|
| AssetNumber | string |
None. |
|
| Brand | string |
None. |
|
| TypeName | string |
None. |
|
| CustomerID | globally unique identifier |
None. |
|
| StartDate | string |
None. |
|
| EndDate | string |
None. |
|
| pageIndex | integer |
None. |
|
| pageSize | integer |
None. |
|
| IsHaiXiao | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"AssetNumber": "sample string 1",
"Brand": "sample string 2",
"TypeName": "sample string 3",
"CustomerID": "ff8a807e-27fc-4fee-a87e-423f54d65b34",
"StartDate": "sample string 5",
"EndDate": "sample string 6",
"pageIndex": 7,
"pageSize": 8,
"IsHaiXiao": true
}
application/xml, text/xml
Sample:
<getUnboundAssetListDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JT.VSFA.Entity.DTO.ApiDTO"> <AssetNumber>sample string 1</AssetNumber> <Brand>sample string 2</Brand> <CustomerID>ff8a807e-27fc-4fee-a87e-423f54d65b34</CustomerID> <EndDate>sample string 6</EndDate> <IsHaiXiao>true</IsHaiXiao> <StartDate>sample string 5</StartDate> <TypeName>sample string 3</TypeName> <pageIndex>7</pageIndex> <pageSize>8</pageSize> </getUnboundAssetListDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResultModelOfObject| Name | 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>