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
AddCustomerSalesFeeDto| Name | 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": "4ebfd376-d484-4fb2-90ef-b3e8ddcbe6ab",
"FeeNumber": "sample string 1",
"DealerID": "601dfa81-45ab-435c-867c-bd993d8c171c",
"MonthID": 1,
"CustomerID": "473474aa-b10b-4f17-aff7-660a87283b19",
"PredictAmount": 1.0,
"NetSupportAmount": 1.0,
"Pics": [
{
"FeeTID": "e32cb1ea-c806-47c4-8e3b-47ed808bd63d",
"PhotocURL": "sample string 1",
"PhotoDateTime": "2025-12-17 05:51:11"
},
{
"FeeTID": "e32cb1ea-c806-47c4-8e3b-47ed808bd63d",
"PhotocURL": "sample string 1",
"PhotoDateTime": "2025-12-17 05:51: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>473474aa-b10b-4f17-aff7-660a87283b19</CustomerID>
<DealerID>601dfa81-45ab-435c-867c-bd993d8c171c</DealerID>
<FeeNumber>sample string 1</FeeNumber>
<FeeTID>4ebfd376-d484-4fb2-90ef-b3e8ddcbe6ab</FeeTID>
<MonthID>1</MonthID>
<NetSupportAmount>1</NetSupportAmount>
<Pics>
<AddCustomerSalesFeePicDto>
<FeeTID>e32cb1ea-c806-47c4-8e3b-47ed808bd63d</FeeTID>
<PhotoDateTime>2025-12-17T05:51:11.7504255+08:00</PhotoDateTime>
<PhotocURL>sample string 1</PhotocURL>
</AddCustomerSalesFeePicDto>
<AddCustomerSalesFeePicDto>
<FeeTID>e32cb1ea-c806-47c4-8e3b-47ed808bd63d</FeeTID>
<PhotoDateTime>2025-12-17T05:51:11.7504255+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
ResultModelOfBoolean| Name | 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>