POST Api/Payment/CancelSubscriptionForm
Request Information
URI Parameters
None.
Body Parameters
CancelPaymentFormModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ChildLostInterest | boolean |
Required |
|
| TooExpensive | boolean |
Required |
|
| TechnicalIssues | boolean |
Required |
|
| NotEnoughNewGamesOrContent | boolean |
Required |
|
| DidntSeeExpectedResults | boolean |
Required |
|
| TemporaryBreak | boolean |
Required |
|
| Other | string |
Matching regular expression pattern: ^[\u0621-\u064A\u0660-\u0669a-zA-Z0-9 .,?!]+$ String length: inclusive between 0 and 500 |
|
| OverallExperience | CancelSubscriptionFormOverallExperienceModel |
Required |
Request Formats
application/json, text/json
Sample:
{
"ChildLostInterest": true,
"TooExpensive": true,
"TechnicalIssues": true,
"NotEnoughNewGamesOrContent": true,
"DidntSeeExpectedResults": true,
"TemporaryBreak": true,
"Other": "sample string 7",
"OverallExperience": {
"VerySatisfied": true,
"Satisfied": true,
"Neutral": true,
"UnSatisfied": true,
"VeryUnSatisfied": true
}
}
application/xml, text/xml
Sample:
<PaymentController.CancelPaymentFormModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GameAPIV3.Controllers">
<ChildLostInterest>true</ChildLostInterest>
<DidntSeeExpectedResults>true</DidntSeeExpectedResults>
<NotEnoughNewGamesOrContent>true</NotEnoughNewGamesOrContent>
<Other>sample string 7</Other>
<OverallExperience>
<Neutral>true</Neutral>
<Satisfied>true</Satisfied>
<UnSatisfied>true</UnSatisfied>
<VerySatisfied>true</VerySatisfied>
<VeryUnSatisfied>true</VeryUnSatisfied>
</OverallExperience>
<TechnicalIssues>true</TechnicalIssues>
<TemporaryBreak>true</TemporaryBreak>
<TooExpensive>true</TooExpensive>
</PaymentController.CancelPaymentFormModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.