POST api/App/Permit/RemovePlatePermit

Request Information

URI Parameters

None.

Body Parameters

RemovePlatePermitRequestModel
NameDescriptionTypeAdditional information
Id

integer

None.

Entry

RemovePlateEntryModel

None.

ExcludeWarnings

boolean

None.

DryRun

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "Entry": {
    "IssuanceDate": "2026-05-23T19:34:32.5012619+02:00",
    "RemovedVehiclesIds": [
      1,
      2
    ]
  },
  "ExcludeWarnings": true,
  "DryRun": true
}

application/xml, text/xml

Sample:
<RemovePlatePermitRequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Pass.WebApi.Areas.Models">
  <DryRun>true</DryRun>
  <Entry>
    <IssuanceDate>2026-05-23T19:34:32.5012619+02:00</IssuanceDate>
    <RemovedVehiclesIds xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
      <d3p1:int>1</d3p1:int>
      <d3p1:int>2</d3p1:int>
    </RemovedVehiclesIds>
  </Entry>
  <ExcludeWarnings>true</ExcludeWarnings>
  <Id>1</Id>
</RemovePlatePermitRequestModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.