POST api/v1/LotOwner/MarkSPotLeaseDuePaymentAsPaid

Request Information

URI Parameters

None.

Body Parameters

InputUpdateMySpotPayment
NameDescriptionTypeAdditional information
SpotUserID

integer

Required

ParkingLotID

integer

Required

ParkingSpotID

integer

Required

PageIndex

integer

Required

PageSize

integer

Required

nounce

string

Required

PaidAmount

decimal number

Required

Request Formats

application/json, text/json

Sample:
{
  "SpotUserID": 1,
  "ParkingLotID": 2,
  "ParkingSpotID": 3,
  "PageIndex": 4,
  "PageSize": 5,
  "nounce": "sample string 6",
  "PaidAmount": 7.0
}

application/xml, text/xml

Sample:
<InputUpdateMySpotPayment xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TruckSpot.Models.API.Input">
  <PageIndex>4</PageIndex>
  <PageSize>5</PageSize>
  <PaidAmount>7</PaidAmount>
  <ParkingLotID>2</ParkingLotID>
  <ParkingSpotID>3</ParkingSpotID>
  <SpotUserID>1</SpotUserID>
  <nounce>sample string 6</nounce>
</InputUpdateMySpotPayment>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.