GET api/WebApiOdata/GetAllRetailerPaymentTerms?providerId={providerId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
providerId

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of PaymentTermViewModel
NameDescriptionTypeAdditional information
PaymentTermName

string

None.

Response Formats

application/json, text/json, text/html

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

application/xml, text/xml

Sample:
<ArrayOfPaymentTermViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SellersCommerce.ViewModels.Shoppers">
  <PaymentTermViewModel>
    <PaymentTermName>sample string 1</PaymentTermName>
  </PaymentTermViewModel>
  <PaymentTermViewModel>
    <PaymentTermName>sample string 1</PaymentTermName>
  </PaymentTermViewModel>
</ArrayOfPaymentTermViewModel>