GET api/paymenttypes
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of PaymentType| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Description | string |
None. |
|
| Category | string |
None. |
|
| PMSValidateCustomer | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"Description": "sample string 2",
"Category": "sample string 3",
"PMSValidateCustomer": true
},
{
"Id": 1,
"Description": "sample string 2",
"Category": "sample string 3",
"PMSValidateCustomer": true
}
]
application/xml, text/xml
Sample:
<ArrayOfPaymentType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Atlantis.Library.Web.Models">
<PaymentType>
<Category>sample string 3</Category>
<Description>sample string 2</Description>
<Id>1</Id>
<PMSValidateCustomer>true</PMSValidateCustomer>
</PaymentType>
<PaymentType>
<Category>sample string 3</Category>
<Description>sample string 2</Description>
<Id>1</Id>
<PMSValidateCustomer>true</PMSValidateCustomer>
</PaymentType>
</ArrayOfPaymentType>