POST api/account/Register

Request Information

URI Parameters

None.

Body Parameters

RegisterBindingModel
NameDescriptionTypeAdditional information
Password

string

None.

ConfirmPassword

string

None.

Email

string

Required

FirstName

string

Required

LastName

string

Required

ZipPostalCode

string

Required

RelationshipCode

integer

Required

NewsletterSubscribed

boolean

Required

PreferredLanguageThirdParty

string

None.

Company

string

None.

TextAlertSubscribe

boolean

None.

TextAlertMobileNumber

string

None.

IsPartial

boolean

None.

PhoneNumber

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Password": "sample string 1",
  "ConfirmPassword": "sample string 2",
  "Email": "sample string 3",
  "FirstName": "sample string 4",
  "LastName": "sample string 5",
  "ZipPostalCode": "sample string 6",
  "RelationshipCode": 1,
  "NewsletterSubscribed": true,
  "PreferredLanguageThirdParty": "sample string 7",
  "Company": "sample string 8",
  "TextAlertSubscribe": true,
  "TextAlertMobileNumber": "sample string 9",
  "IsPartial": true,
  "PhoneNumber": "sample string 11"
}

text/html

Sample:
{"Password":"sample string 1","ConfirmPassword":"sample string 2","Email":"sample string 3","FirstName":"sample string 4","LastName":"sample string 5","ZipPostalCode":"sample string 6","RelationshipCode":1,"NewsletterSubscribed":true,"PreferredLanguageThirdParty":"sample string 7","Company":"sample string 8","TextAlertSubscribe":true,"TextAlertMobileNumber":"sample string 9","IsPartial":true,"PhoneNumber":"sample string 11"}

application/xml, text/xml

Sample:
<RegisterBindingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BMCBusinessLayer.Models">
  <Company>sample string 8</Company>
  <ConfirmPassword>sample string 2</ConfirmPassword>
  <Email>sample string 3</Email>
  <FirstName>sample string 4</FirstName>
  <IsPartial>true</IsPartial>
  <LastName>sample string 5</LastName>
  <NewsletterSubscribed>true</NewsletterSubscribed>
  <Password>sample string 1</Password>
  <PhoneNumber>sample string 11</PhoneNumber>
  <PreferredLanguageThirdParty>sample string 7</PreferredLanguageThirdParty>
  <RelationshipCode>1</RelationshipCode>
  <TextAlertMobileNumber>sample string 9</TextAlertMobileNumber>
  <TextAlertSubscribe>true</TextAlertSubscribe>
  <ZipPostalCode>sample string 6</ZipPostalCode>
</RegisterBindingModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.