POST api/SalesChannelInvoice/updateSalesChannelInvoice

Request Information

URI Parameters

None.

Body Parameters

SalesChannelInvoice
NameDescriptionTypeAdditional information
SalesChannelInvoiceID

integer

None.

ReservationID

integer

None.

SalesChannelInvoiceTypeID

integer

None.

SalesChannelInvoiceTypeName

string

None.

Amount

decimal number

None.

Paid

boolean

None.

Comment

string

None.

DateCreated

date

None.

Request Formats

application/json, text/json

Sample:
{
  "SalesChannelInvoiceID": 1,
  "ReservationID": 2,
  "SalesChannelInvoiceTypeID": 3,
  "SalesChannelInvoiceTypeName": "sample string 4",
  "Amount": 5.0,
  "Paid": true,
  "Comment": "sample string 7",
  "DateCreated": "2025-12-10T06:00:34.7945604+00:00"
}

application/xml, text/xml

Sample:
<SalesChannelInvoice xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <SalesChannelInvoiceID>1</SalesChannelInvoiceID>
  <ReservationID>2</ReservationID>
  <SalesChannelInvoiceTypeID>3</SalesChannelInvoiceTypeID>
  <SalesChannelInvoiceTypeName>sample string 4</SalesChannelInvoiceTypeName>
  <Amount>5</Amount>
  <Paid>true</Paid>
  <Comment>sample string 7</Comment>
  <DateCreated>2025-12-10T06:00:34.7945604+00:00</DateCreated>
</SalesChannelInvoice>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.