PUT api/repossession/{repossessionId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
repossessionId

integer

Required

Body Parameters

RepossessionSubModel
NameDescriptionTypeAdditional information
RepossessionID

integer

None.

AssignmentDate

date

None.

RTCLetterDate

date

None.

RTCExpiredDate

date

None.

RTCWaivedDate

date

None.

RepossessionReason1ID

integer

None.

RepossessionReason2ID

integer

None.

AccountNumber

integer

None.

RecoveryAgents

Collection of integer

None.

Request Formats

application/json, text/json

Sample:
{
  "RepossessionID": 1,
  "AssignmentDate": "2025-07-05T07:10:16.6929489+00:00",
  "RTCLetterDate": "2025-07-05T07:10:16.6929489+00:00",
  "RTCExpiredDate": "2025-07-05T07:10:16.6929489+00:00",
  "RTCWaivedDate": "2025-07-05T07:10:16.6929489+00:00",
  "RepossessionReason1ID": 3,
  "RepossessionReason2ID": 1,
  "AccountNumber": 4,
  "RecoveryAgents": [
    1,
    2
  ]
}

application/xml, text/xml

Sample:
<RepossessionSubModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Automatrix.DMS.Business.Entities.SubModels">
  <AccountNumber>4</AccountNumber>
  <AssignmentDate>2025-07-05T07:10:16.6929489+00:00</AssignmentDate>
  <RTCExpiredDate>2025-07-05T07:10:16.6929489+00:00</RTCExpiredDate>
  <RTCLetterDate>2025-07-05T07:10:16.6929489+00:00</RTCLetterDate>
  <RTCWaivedDate>2025-07-05T07:10:16.6929489+00:00</RTCWaivedDate>
  <RecoveryAgents xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:int>1</d2p1:int>
    <d2p1:int>2</d2p1:int>
  </RecoveryAgents>
  <RepossessionID>1</RepossessionID>
  <RepossessionReason1ID>3</RepossessionReason1ID>
  <RepossessionReason2ID>1</RepossessionReason2ID>
</RepossessionSubModel>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'RepossessionSubModel'

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.