POST api/UpdateSpecialStatus

Request Information

URI Parameters

None.

Body Parameters

SpecialStatus
NameDescriptionTypeAdditional information
idInv

integer

None.

type

string

None.

warranty

Warranty

None.

booking

Booking

None.

eventDate

date

None.

username

string

None.

local

string

None.

details

string

None.

Request Formats

application/json, text/json

Sample:
{
  "idInv": 1,
  "type": "sample string 2",
  "warranty": {
    "idProvider": 1
  },
  "booking": {
    "idCustomer": 1,
    "amount": 2.0,
    "methodPay": "sample string 3",
    "reference": "sample string 4"
  },
  "eventDate": "2025-12-19T05:24:23.0628929-08:00",
  "username": "sample string 4",
  "local": "sample string 5",
  "details": "sample string 6"
}

application/xml, text/xml

Sample:
<SpecialStatus xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API_Pepezone.Models">
  <booking>
    <amount>2</amount>
    <idCustomer>1</idCustomer>
    <methodPay>sample string 3</methodPay>
    <reference>sample string 4</reference>
  </booking>
  <details>sample string 6</details>
  <eventDate>2025-12-19T05:24:23.0628929-08:00</eventDate>
  <idInv>1</idInv>
  <local>sample string 5</local>
  <type>sample string 2</type>
  <username>sample string 4</username>
  <warranty>
    <idProvider>1</idProvider>
  </warranty>
</SpecialStatus>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.