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": "0186f79d-cbd2-4e65-af2b-247f2912d34d", "FeeNumber": "sample string 1", "DealerID": "e132b935-c324-41b4-9623-778b4bdbaa94", "MonthID": 1, "CustomerID": "c26af76b-20fa-40da-9e81-8da69cd8f9bb", "PredictAmount": 1.0, "NetSupportAmount": 1.0, "Pics": [ { "FeeTID": "915e9cbc-f2d8-4f1b-b70c-d5d0d2d49a7a", "PhotocURL": "sample string 1", "PhotoDateTime": "2025-07-23 07:38:11" }, { "FeeTID": "915e9cbc-f2d8-4f1b-b70c-d5d0d2d49a7a", "PhotocURL": "sample string 1", "PhotoDateTime": "2025-07-23 07:38:11" } ] }
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>c26af76b-20fa-40da-9e81-8da69cd8f9bb</CustomerID> <DealerID>e132b935-c324-41b4-9623-778b4bdbaa94</DealerID> <FeeNumber>sample string 1</FeeNumber> <FeeTID>0186f79d-cbd2-4e65-af2b-247f2912d34d</FeeTID> <MonthID>1</MonthID> <NetSupportAmount>1</NetSupportAmount> <Pics> <AddCustomerSalesFeePicDto> <FeeTID>915e9cbc-f2d8-4f1b-b70c-d5d0d2d49a7a</FeeTID> <PhotoDateTime>2025-07-23T07:38:11.1608558+08:00</PhotoDateTime> <PhotocURL>sample string 1</PhotocURL> </AddCustomerSalesFeePicDto> <AddCustomerSalesFeePicDto> <FeeTID>915e9cbc-f2d8-4f1b-b70c-d5d0d2d49a7a</FeeTID> <PhotoDateTime>2025-07-23T07:38:11.1608558+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>