POST api/selfsale/SetContactInfo

Request Information

Parameters

NameDescriptionAdditional information
model

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "Id": 1,
  "FullName": "sample string 1",
  "Gender": "sample string 2",
  "Phone": "sample string 3",
  "AllowSelfSaleMarketing": true,
  "AllowFacebookComments": true,
  "UseSelfSaleSpamFilter": true,
  "Email": "sample string 7",
  "Password": "sample string 8",
  "ConfirmPassword": "sample string 9",
  "ReciveNewsletter": true
}

application/xml, text/xml

Sample:
<ContactInfoModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Boliga.Web.API.Models">
  <ConfirmPassword>sample string 9</ConfirmPassword>
  <Email>sample string 7</Email>
  <Password>sample string 8</Password>
  <ReciveNewsletter>true</ReciveNewsletter>
  <AllowFacebookComments>true</AllowFacebookComments>
  <AllowSelfSaleMarketing>true</AllowSelfSaleMarketing>
  <FullName>sample string 1</FullName>
  <Gender>sample string 2</Gender>
  <Id>1</Id>
  <Phone>sample string 3</Phone>
  <UseSelfSaleSpamFilter>true</UseSelfSaleSpamFilter>
</ContactInfoModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Response body formats

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

Sample:

Sample not available.