POST api/Account/UpdateFormSettings

Request Information

URI Parameters

None.

Body Parameters

UpdateFormSettingsViewModel
NameDescriptionTypeAdditional information
UserId

string

Required

ParentAccountId

string

Required

LoggedInAccountId

string

Required

AccountId

string

Required

IsShowLogo

boolean

None.

AccountName

string

Required

IsShowAddress1

boolean

None.

IsShowAddress2

boolean

None.

IsShowCity

boolean

None.

IsShowZipCode

boolean

None.

IsShowTimezone

boolean

None.

IsShowState

boolean

None.

IsShowCountry

boolean

None.

IsShowInterests

boolean

None.

InterestIds

Collection of string

None.

IsShowSubscriptions

boolean

None.

IsShowBirthday

boolean

None.

BirthdayFormat

Birthday

None.

MessageFrequency

integer

None.

IsLogoUploded

boolean

None.

LogoUrl

string

None.

Request Formats

application/json, text/json

Sample:
{
  "UserId": "sample string 1",
  "ParentAccountId": "sample string 2",
  "LoggedInAccountId": "sample string 3",
  "AccountId": "sample string 4",
  "IsShowLogo": true,
  "AccountName": "sample string 6",
  "IsShowAddress1": true,
  "IsShowAddress2": true,
  "IsShowCity": true,
  "IsShowZipCode": true,
  "IsShowTimezone": true,
  "IsShowState": true,
  "IsShowCountry": true,
  "IsShowInterests": true,
  "InterestIds": [
    "sample string 1",
    "sample string 2"
  ],
  "IsShowSubscriptions": true,
  "IsShowBirthday": true,
  "BirthdayFormat": "MonthDay",
  "MessageFrequency": 17,
  "IsLogoUploded": true,
  "LogoUrl": "sample string 19"
}

application/xml, text/xml

Sample:
<UpdateFormSettingsViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MindMe.Business.Service.Services.RequestViewModels.AccountsAndUsers.FormSettings">
  <AccountId>sample string 4</AccountId>
  <AccountName>sample string 6</AccountName>
  <BirthdayFormat>MonthDay</BirthdayFormat>
  <InterestIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
  </InterestIds>
  <IsLogoUploded>true</IsLogoUploded>
  <IsShowAddress1>true</IsShowAddress1>
  <IsShowAddress2>true</IsShowAddress2>
  <IsShowBirthday>true</IsShowBirthday>
  <IsShowCity>true</IsShowCity>
  <IsShowCountry>true</IsShowCountry>
  <IsShowInterests>true</IsShowInterests>
  <IsShowLogo>true</IsShowLogo>
  <IsShowState>true</IsShowState>
  <IsShowSubscriptions>true</IsShowSubscriptions>
  <IsShowTimezone>true</IsShowTimezone>
  <IsShowZipCode>true</IsShowZipCode>
  <LoggedInAccountId>sample string 3</LoggedInAccountId>
  <LogoUrl>sample string 19</LogoUrl>
  <MessageFrequency>17</MessageFrequency>
  <ParentAccountId>sample string 2</ParentAccountId>
  <UserId>sample string 1</UserId>
</UpdateFormSettingsViewModel>

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.