POST api/repossession/{repossessionId}/charge
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| repossessionId | integer |
Required |
Body Parameters
RepossessionChargeModel| Name | Description | Type | Additional information |
|---|---|---|---|
| RepossessionChargeId | integer |
None. |
|
| VendorID | integer |
None. |
|
| Vendor | string |
None. |
|
| Category | string |
None. |
|
| ChargeDate | date |
None. |
|
| ChargeAmount | decimal number |
None. |
|
| Description | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"RepossessionChargeId": 1,
"VendorID": 2,
"Vendor": "sample string 3",
"Category": "sample string 4",
"ChargeDate": "2025-12-06T03:34:56.9026282+00:00",
"ChargeAmount": 6.0,
"Description": "sample string 7"
}
application/xml, text/xml
Sample:
<RepossessionChargeModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Automatrix.DMS.Business.Entities.Models"> <Category>sample string 4</Category> <ChargeAmount>6</ChargeAmount> <ChargeDate>2025-12-06T03:34:56.9026282+00:00</ChargeDate> <Description>sample string 7</Description> <RepossessionChargeId>1</RepossessionChargeId> <Vendor>sample string 3</Vendor> <VendorID>2</VendorID> </RepossessionChargeModel>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.