POST api/profile/user/intl/refund

Request Information

URI Parameters

None.

Body Parameters

InitiateRefund
NameDescriptionTypeAdditional information
Id

integer

None.

Phone

string

None.

IsRefund

boolean

None.

Comment

string

None.

Action

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "Phone": "sample string 2",
  "IsRefund": true,
  "Comment": "sample string 4",
  "Action": "sample string 5"
}

text/html

Sample:
{"Id":1,"Phone":"sample string 2","IsRefund":true,"Comment":"sample string 4","Action":"sample string 5"}

application/xml, text/xml

Sample:
<InitiateRefund xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FoneClube.Business.Commons.Entities.FoneClube">
  <Action>sample string 5</Action>
  <Comment>sample string 4</Comment>
  <Id>1</Id>
  <IsRefund>true</IsRefund>
  <Phone>sample string 2</Phone>
</InitiateRefund>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'InitiateRefund'.

Response Information

Resource Description

string

Response Formats

application/json, text/json, text/html

Sample:
"sample string 1"

application/xml, text/xml

Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>