GET v1/payment-processing-methods

Gets list of available payment processing methods.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

SearchResultOfPaymentProcessingMethodSearchResult
NameDescriptionTypeAdditional information
TotalCount

integer

None.

Data

Collection of PaymentProcessingMethodSearchResult

None.

Response Formats

application/json, text/json

Sample:
{
  "totalCount": 1,
  "data": [
    {
      "id": 1,
      "name": "sample string 2"
    },
    {
      "id": 1,
      "name": "sample string 2"
    }
  ]
}

application/xml, text/xml

Sample:
<SearchResultOfPaymentProcessingMethodsRu6OrYeO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BAPI.Models">
  <Data xmlns:d2p1="http://schemas.datacontract.org/2004/07/BAPI.Models.Accounting.SearchResults">
    <d2p1:PaymentProcessingMethods>
      <d2p1:Id>1</d2p1:Id>
      <d2p1:Name>sample string 2</d2p1:Name>
    </d2p1:PaymentProcessingMethods>
    <d2p1:PaymentProcessingMethods>
      <d2p1:Id>1</d2p1:Id>
      <d2p1:Name>sample string 2</d2p1:Name>
    </d2p1:PaymentProcessingMethods>
  </Data>
  <TotalCount>1</TotalCount>
</SearchResultOfPaymentProcessingMethodsRu6OrYeO>