GET api/WOInvoice/GetPaymentMethodList?APIKey={APIKey}

Get Payment method list

Request Information

URI Parameters

NameDescriptionTypeAdditional information
APIKey

string

Default value is

Body Parameters

None.

Response Information

Resource Description

Collection of PaymentMethodDataModel
NameDescriptionTypeAdditional information
PaymentMethodID

integer

None.

PaymentMethod

string

None.

Response Formats

application/json, text/json, text/plain, text/html

Sample:
[
  {
    "paymentMethodID": 1,
    "paymentMethod": "sample string 2"
  },
  {
    "paymentMethodID": 1,
    "paymentMethod": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfPaymentMethodDataModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ATMP.Core.DataModel">
  <PaymentMethodDataModel>
    <PaymentMethod>sample string 2</PaymentMethod>
    <PaymentMethodID>1</PaymentMethodID>
  </PaymentMethodDataModel>
  <PaymentMethodDataModel>
    <PaymentMethod>sample string 2</PaymentMethod>
    <PaymentMethodID>1</PaymentMethodID>
  </PaymentMethodDataModel>
</ArrayOfPaymentMethodDataModel>

multipart/form-data

Sample:
<ArrayOfPaymentMethodDataModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ATMP.Core.DataModel"><PaymentMethodDataModel><PaymentMethod>sample string 2</PaymentMethod><PaymentMethodID>1</PaymentMethodID></PaymentMethodDataModel><PaymentMethodDataModel><PaymentMethod>sample string 2</PaymentMethod><PaymentMethodID>1</PaymentMethodID></PaymentMethodDataModel></ArrayOfPaymentMethodDataModel>