GET
api/v1/subscription-payment-details?bpCode={bpCode}&clientId={clientId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| bpCode | string |
Required |
|
| clientId | integer |
Required |
Response Information
Description:
Return type: SellerPaymentDetails
Response Formats
application/json, text/json
{
"SelectedPlan": "sample string 1",
"BaseAmount": 2.0,
"Discount": 3.0,
"TotalPayable": 4.0,
"NextBillingDate": "sample string 5",
"PricingFrequencyId": 6
}
text/html
{"SelectedPlan":"sample string 1","BaseAmount":2.0,"Discount":3.0,"TotalPayable":4.0,"NextBillingDate":"sample string 5","PricingFrequencyId":6}
application/xml, text/xml
<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>
