GET api/Invoice/getPMInvoiceTypes

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of PMInvoiceType
NameDescriptionTypeAdditional information
PMInvoiceTypeID

integer

None.

PMInvoiceTypeName

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "PMInvoiceTypeID": 1,
    "PMInvoiceTypeName": "sample string 2"
  },
  {
    "PMInvoiceTypeID": 1,
    "PMInvoiceTypeName": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfPMInvoiceType xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <PMInvoiceType>
    <PMInvoiceTypeID>1</PMInvoiceTypeID>
    <PMInvoiceTypeName>sample string 2</PMInvoiceTypeName>
  </PMInvoiceType>
  <PMInvoiceType>
    <PMInvoiceTypeID>1</PMInvoiceTypeID>
    <PMInvoiceTypeName>sample string 2</PMInvoiceTypeName>
  </PMInvoiceType>
</ArrayOfPMInvoiceType>