GET api/v1/subscription-payment-details?bpCode={bpCode}&clientId={clientId}

Request Information

URI Parameters
NameDescriptionTypeAdditional information
bpCode

string

Required

clientId

integer

Required

Response Information

Description:

Return type: SellerPaymentDetails

Response Formats
{
  "SelectedPlan": "sample string 1",
  "BaseAmount": 2.0,
  "Discount": 3.0,
  "TotalPayable": 4.0,
  "NextBillingDate": "sample string 5",
  "PricingFrequencyId": 6
}
{"SelectedPlan":"sample string 1","BaseAmount":2.0,"Discount":3.0,"TotalPayable":4.0,"NextBillingDate":"sample string 5","PricingFrequencyId":6}
<SellerPaymentDetails xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FDCMSAdminAPI.Models.Seller">
  <BaseAmount>2</BaseAmount>
  <Discount>3</Discount>
  <NextBillingDate>sample string 5</NextBillingDate>
  <PricingFrequencyId>6</PricingFrequencyId>
  <SelectedPlan>sample string 1</SelectedPlan>
  <TotalPayable>4</TotalPayable>
</SellerPaymentDetails>