POST
api/v1/auto-renew
Request Information
Body Parameters
AutoRenewRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| BPCode | string |
None. |
|
| StripeSubscriptionId | string |
None. |
|
| IsAutoRenew | boolean |
None. |
|
| ClientId | integer |
None. |
|
| SellerId | integer |
None. |
|
| PaymentMode | integer |
None. |
Request Formats
application/json, text/json
{
"BPCode": "sample string 1",
"StripeSubscriptionId": "sample string 2",
"IsAutoRenew": true,
"ClientId": 4,
"SellerId": 5,
"PaymentMode": 6
}
text/html
{"BPCode":"sample string 1","StripeSubscriptionId":"sample string 2","IsAutoRenew":true,"ClientId":4,"SellerId":5,"PaymentMode":6}
application/xml, text/xml
<AutoRenewRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FDCMSAdminAPI.Models.Account"> <BPCode>sample string 1</BPCode> <ClientId>4</ClientId> <IsAutoRenew>true</IsAutoRenew> <PaymentMode>6</PaymentMode> <SellerId>5</SellerId> <StripeSubscriptionId>sample string 2</StripeSubscriptionId> </AutoRenewRequest>
application/x-www-form-urlencoded
Sample not available.
Response Information
Description:
Return type: AutoRenewResponse
Response Formats
application/json, text/json
{
"IsSuccess": true,
"AutoRenewalStatus": "sample string 2"
}
text/html
{"IsSuccess":true,"AutoRenewalStatus":"sample string 2"}
application/xml, text/xml
<AutoRenewResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FDCMSAdminAPI.Models.Account"> <AutoRenewalStatus>sample string 2</AutoRenewalStatus> <IsSuccess>true</IsSuccess> </AutoRenewResponse>
