POST v1/paymentMethodSharingOverrideSummary/getCustomersPaymentMethodSharing

Documentation for 'GetCustomersPaymentMethodSharing'.

Request Information

Parameters

NameDescriptionAdditional information
dto
Documentation for 'dto'.

Define this parameter in the request body.

queryOptions
Documentation for 'queryOptions'.

Define this parameter in the request URI.

Request body formats

application/json, text/json

Sample:
Click to beautify!
{
  "customerIds": [
    1,
    2,
    3
  ],
  "sharing": true,
  "paymentMethodId": 1,
  "parentCustomerId": 2,
  "isSelectedAll": true,
  "excludedCustomerIds": [
    1,
    2,
    3
  ]
}

application/xml, text/xml

Sample:
Click to beautify!
<PaymentMethodSharingOverrideBulk xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Common.Dto.Get">
  <CustomerIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:long>1</d2p1:long>
    <d2p1:long>2</d2p1:long>
    <d2p1:long>3</d2p1:long>
  </CustomerIds>
  <ExcludedCustomerIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:long>1</d2p1:long>
    <d2p1:long>2</d2p1:long>
    <d2p1:long>3</d2p1:long>
  </ExcludedCustomerIds>
  <IsSelectedAll>true</IsSelectedAll>
  <ParentCustomerId>2</ParentCustomerId>
  <PaymentMethodId>1</PaymentMethodId>
  <Sharing>true</Sharing>
</PaymentMethodSharingOverrideBulk>

application/x-www-form-urlencoded

Sample:
Click to beautify!

Sample not available.

Response Information

Response body formats

application/json, text/json

Sample:
Click to beautify!
[
  1,
  2,
  3
]

application/xml, text/xml

Sample:
Click to beautify!
<ArrayOflong xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
  <long>1</long>
  <long>2</long>
  <long>3</long>
</ArrayOflong>