GET api/GuestInvoice/getGuestInvoiceTypes

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of GuestInvoiceType
NameDescriptionTypeAdditional information
GuestInvoiceTypeID

integer

None.

GuestInvoiceTypeName

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "GuestInvoiceTypeID": 1,
    "GuestInvoiceTypeName": "sample string 2"
  },
  {
    "GuestInvoiceTypeID": 1,
    "GuestInvoiceTypeName": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfGuestInvoiceType xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <GuestInvoiceType>
    <GuestInvoiceTypeID>1</GuestInvoiceTypeID>
    <GuestInvoiceTypeName>sample string 2</GuestInvoiceTypeName>
  </GuestInvoiceType>
  <GuestInvoiceType>
    <GuestInvoiceTypeID>1</GuestInvoiceTypeID>
    <GuestInvoiceTypeName>sample string 2</GuestInvoiceTypeName>
  </GuestInvoiceType>
</ArrayOfGuestInvoiceType>