GET api/{projectID}/PaymentTypesList

Request Information

URI Parameters

NameDescriptionTypeAdditional information
projectID

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of PaymentType
NameDescriptionTypeAdditional information
type

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "type": "sample string 1"
  },
  {
    "type": "sample string 1"
  }
]

application/xml, text/xml

Sample:
<ArrayOfPaymentType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AppKobi.WebApi">
  <PaymentType>
    <type>sample string 1</type>
  </PaymentType>
  <PaymentType>
    <type>sample string 1</type>
  </PaymentType>
</ArrayOfPaymentType>