POST api/Arrangement/SaveRemoveArrangement

Request Information

URI Parameters

None.

Body Parameters

RemoveArrangementVM
NameDescriptionTypeAdditional information
ArrangementStatusID

integer

None.

AccountID

integer

None.

ArrangementIDs

string

None.

ArrangementStatusList

Collection of ArrangementStatusForList

None.

EditSettings

RemoveArrangementSettingsAndValidationsVM

None.

Response

IResponse

None.

Request Formats

application/json, text/json

Sample:
{
  "ArrangementStatusID": 1,
  "AccountID": 1,
  "ArrangementIDs": "sample string 2",
  "ArrangementStatusList": [
    {
      "ArrangementStatusID": 1,
      "ArrangementStatus": "sample string 2"
    },
    {
      "ArrangementStatusID": 1,
      "ArrangementStatus": "sample string 2"
    }
  ],
  "EditSettings": {
    "ShowArrangementList": true,
    "ValidationIsMandatory": true
  },
  "Response": null
}

application/xml, text/xml

Sample:
<RemoveArrangementVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Debtrak.BusinessObjects.ViewModels.Arrangement">
  <Response i:nil="true" xmlns="http://schemas.datacontract.org/2004/07/Debtrak.BusinessObjects.ViewModels" />
  <AccountID>1</AccountID>
  <ArrangementIDs>sample string 2</ArrangementIDs>
  <ArrangementStatusID>1</ArrangementStatusID>
  <ArrangementStatusList xmlns:d2p1="http://schemas.datacontract.org/2004/07/Debtrak.BusinessObjects.Models.ArrangementStatus">
    <d2p1:ArrangementStatusForList>
      <d2p1:ArrangementStatus>sample string 2</d2p1:ArrangementStatus>
      <d2p1:ArrangementStatusID>1</d2p1:ArrangementStatusID>
    </d2p1:ArrangementStatusForList>
    <d2p1:ArrangementStatusForList>
      <d2p1:ArrangementStatus>sample string 2</d2p1:ArrangementStatus>
      <d2p1:ArrangementStatusID>1</d2p1:ArrangementStatusID>
    </d2p1:ArrangementStatusForList>
  </ArrangementStatusList>
  <EditSettings>
    <ShowArrangementList>true</ShowArrangementList>
    <ValidationIsMandatory>true</ValidationIsMandatory>
  </EditSettings>
</RemoveArrangementVM>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ActionResultVM
NameDescriptionTypeAdditional information
Response

IResponse

None.

Response Formats

application/json, text/json

Sample:
{
  "Response": null
}

application/xml, text/xml

Sample:
<ActionResultVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Debtrak.BusinessObjects.ViewModels">
  <Response i:nil="true" />
</ActionResultVM>