POST api/Payment/ReverseCancelOrRenewSubscriptionByUser

Request Information

URI Parameters

None.

Body Parameters

ReverseOrRenewSubscriptionCancellationForUserRequestVM
NameDescriptionTypeAdditional information
UserId

string

Required

SubscriptionId

string

Required

ParentAccountId

string

Required

TrialDays

integer

None.

IsRenewSubscription

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "UserId": "sample string 1",
  "SubscriptionId": "sample string 2",
  "ParentAccountId": "sample string 3",
  "TrialDays": 1,
  "IsRenewSubscription": true
}

application/xml, text/xml

Sample:
<ReverseOrRenewSubscriptionCancellationForUserRequestVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MindMe.Business.Service.Services.RequestViewModels.BillingAndPaymentRequestViewModels">
  <IsRenewSubscription>true</IsRenewSubscription>
  <ParentAccountId>sample string 3</ParentAccountId>
  <SubscriptionId>sample string 2</SubscriptionId>
  <TrialDays>1</TrialDays>
  <UserId>sample string 1</UserId>
</ReverseOrRenewSubscriptionCancellationForUserRequestVM>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.