POST api/repossession/{repossessionId}/disposal/restock
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| repossessionId | integer |
Required |
Body Parameters
RepossessionRestockSubModel| Name | Description | Type | Additional information |
|---|---|---|---|
| RepossessionID | integer |
None. |
|
| PostDate | date |
None. |
|
| Cost | decimal number |
None. |
|
| Miles | integer |
None. |
|
| LotId | integer |
None. |
|
| TMU | boolean |
None. |
|
| Exempt | boolean |
None. |
|
| EML | boolean |
None. |
|
| Location | string |
None. |
|
| RestockStockNumber | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"RepossessionID": 1,
"PostDate": "2025-12-06T03:33:39.7636842+00:00",
"Cost": 3.0,
"Miles": 4,
"LotId": 5,
"TMU": true,
"Exempt": true,
"EML": true,
"Location": "sample string 9",
"RestockStockNumber": 1
}
application/xml, text/xml
Sample:
<RepossessionRestockSubModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Automatrix.DMS.Business.Entities.SubModels"> <Cost>3</Cost> <EML>true</EML> <Exempt>true</Exempt> <Location>sample string 9</Location> <LotId>5</LotId> <Miles>4</Miles> <PostDate>2025-12-06T03:33:39.7636842+00:00</PostDate> <RepossessionID>1</RepossessionID> <RestockStockNumber>1</RestockStockNumber> <TMU>true</TMU> </RepossessionRestockSubModel>
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.