POST api/Asset/getUnboundAssetListToHaihui?DomainId={DomainId}&AccountId={AccountId}&PersonId={PersonId}

根据经销商ID获取上级未绑定的资产信息

Request Information

URI Parameters

NameDescriptionTypeAdditional information
DomainId

域Id

globally unique identifier

None.

AccountId

账户Id

globally unique identifier

None.

PersonId

人员Id

globally unique identifier

None.

Body Parameters

getUnboundAssetListDto
NameDescriptionTypeAdditional 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": "8c5048da-f9aa-40b8-a555-34f5ce0c9a73",
  "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>8c5048da-f9aa-40b8-a555-34f5ce0c9a73</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
NameDescriptionTypeAdditional 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>