PUT api/CompanyPrices/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

CompanyPrice
NameDescriptionTypeAdditional information
id

integer

None.

BookingPrice

decimal number

None.

DateCreated

date

None.

LastModified

date

None.

EmergencyFine

decimal number

None.

PurchaseTransactionFee

decimal number

None.

Vat

decimal number

None.

CommissionFee

decimal number

None.

ReserveFee

decimal number

None.

Request Formats

application/json, text/json

Sample:
{
  "id": 1,
  "BookingPrice": 1.1,
  "DateCreated": "2025-12-09T04:08:01.6199706+02:00",
  "LastModified": "2025-12-09T04:08:01.6199706+02:00",
  "EmergencyFine": 2.1,
  "PurchaseTransactionFee": 3.1,
  "Vat": 4.1,
  "CommissionFee": 5.1,
  "ReserveFee": 6.1
}

application/xml, text/xml

Sample:
<CompanyPrice xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PanicSAAPI.Database">
  <BookingPrice>1.1</BookingPrice>
  <CommissionFee>5.1</CommissionFee>
  <DateCreated>2025-12-09T04:08:01.6199706+02:00</DateCreated>
  <EmergencyFine>2.1</EmergencyFine>
  <LastModified>2025-12-09T04:08:01.6199706+02:00</LastModified>
  <PurchaseTransactionFee>3.1</PurchaseTransactionFee>
  <ReserveFee>6.1</ReserveFee>
  <Vat>4.1</Vat>
  <id>1</id>
</CompanyPrice>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.