POST api/FeeCustomerSales/AddCustomerSalesFee?DomainId={DomainId}&AccountId={AccountId}&PersonId={PersonId}
保存POSE费用
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
AddCustomerSalesFeeDtoName | Description | Type | Additional information |
---|---|---|---|
FeeTID | globally unique identifier |
None. |
|
FeeNumber | string |
None. |
|
DealerID | globally unique identifier |
None. |
|
MonthID | integer |
None. |
|
CustomerID | globally unique identifier |
None. |
|
PredictAmount | decimal number |
None. |
|
NetSupportAmount | decimal number |
None. |
|
Pics | Collection of AddCustomerSalesFeePicDto |
None. |
Request Formats
application/json, text/json
Sample:
{ "FeeTID": "64fd8920-3d46-4c44-8507-bb9f0e7be4cc", "FeeNumber": "sample string 1", "DealerID": "adfa01c3-55bd-46f0-b193-fc01f57c6afa", "MonthID": 1, "CustomerID": "133d04a7-843f-48ed-9395-531c1a68a584", "PredictAmount": 1.0, "NetSupportAmount": 1.0, "Pics": [ { "FeeTID": "cf5f7a48-acd9-4d5e-b2ed-b9222c6d9446", "PhotocURL": "sample string 1", "PhotoDateTime": "2025-06-23 22:19:30" }, { "FeeTID": "cf5f7a48-acd9-4d5e-b2ed-b9222c6d9446", "PhotocURL": "sample string 1", "PhotoDateTime": "2025-06-23 22:19:30" } ] }
application/xml, text/xml
Sample:
<AddCustomerSalesFeeDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JT.VSFA.Entity.DTO.ApiDTO"> <CustomerID>133d04a7-843f-48ed-9395-531c1a68a584</CustomerID> <DealerID>adfa01c3-55bd-46f0-b193-fc01f57c6afa</DealerID> <FeeNumber>sample string 1</FeeNumber> <FeeTID>64fd8920-3d46-4c44-8507-bb9f0e7be4cc</FeeTID> <MonthID>1</MonthID> <NetSupportAmount>1</NetSupportAmount> <Pics> <AddCustomerSalesFeePicDto> <FeeTID>cf5f7a48-acd9-4d5e-b2ed-b9222c6d9446</FeeTID> <PhotoDateTime>2025-06-23T22:19:30.3108494+08:00</PhotoDateTime> <PhotocURL>sample string 1</PhotocURL> </AddCustomerSalesFeePicDto> <AddCustomerSalesFeePicDto> <FeeTID>cf5f7a48-acd9-4d5e-b2ed-b9222c6d9446</FeeTID> <PhotoDateTime>2025-06-23T22:19:30.3108494+08:00</PhotoDateTime> <PhotocURL>sample string 1</PhotocURL> </AddCustomerSalesFeePicDto> </Pics> <PredictAmount>1</PredictAmount> </AddCustomerSalesFeeDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResultModelOfBooleanName | Description | Type | Additional information |
---|---|---|---|
Code | ReturnCode |
None. |
|
Message | string |
None. |
|
Data | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{ "Code": 200, "Message": "sample string 1", "Data": true }
application/xml, text/xml
Sample:
<ResultModelOfboolean xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JT.VSFA.Utility"> <Code>Success</Code> <Data>true</Data> <Message>sample string 1</Message> </ResultModelOfboolean>