POST api/integracion/CancelBooking

Request Information

URI Parameters

None.

Body Parameters

ListaDeleteBookingsModel
NameDescriptionTypeAdditional information
Lista

Collection of DeleteBookingModel

None.

Request Formats

application/json, text/json

Sample:
{
  "Lista": [
    {
      "Booking": "sample string 1",
      "ISO": "sample string 2"
    },
    {
      "Booking": "sample string 1",
      "ISO": "sample string 2"
    }
  ]
}

application/xml, text/xml

Sample:
<ListaDeleteBookingsModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Citikold.RFS.Service.Models">
  <Lista>
    <DeleteBookingModel>
      <Booking>sample string 1</Booking>
      <ISO>sample string 2</ISO>
    </DeleteBookingModel>
    <DeleteBookingModel>
      <Booking>sample string 1</Booking>
      <ISO>sample string 2</ISO>
    </DeleteBookingModel>
  </Lista>
</ListaDeleteBookingsModel>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'ListaDeleteBookingsModel'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.