POST api/AspNetMembership

Request Information

URI Parameters

None.

Body Parameters

AspNet_Membership
NameDescriptionTypeAdditional information
UserId

string

None.

Password

string

None.

PasswordSalt

string

None.

MobilePIN

string

None.

Email

string

None.

LoweredEmail

string

None.

PasswordQuestion

string

None.

PasswordAnswer

string

None.

Comment

string

None.

IsApproved

boolean

None.

IsLockedOut

boolean

None.

PasswordFormat

integer

None.

FailedPasswordAttemptCount

integer

None.

FailedPasswordAnswerAttemptCount

integer

None.

CreateDate

date

None.

LastLoginDate

date

None.

LastPasswordChangedDate

date

None.

LastLockoutDate

date

None.

FailedPasswordAttemptWindowStart

date

None.

FailedPasswordAnswerAttemptWindowStart

date

None.

Request Formats

application/json, text/json

Sample:
{
  "UserId": "sample string 1",
  "Password": "sample string 2",
  "PasswordSalt": "sample string 3",
  "MobilePIN": "sample string 4",
  "Email": "sample string 5",
  "LoweredEmail": "sample string 6",
  "PasswordQuestion": "sample string 7",
  "PasswordAnswer": "sample string 8",
  "Comment": "sample string 9",
  "IsApproved": true,
  "IsLockedOut": true,
  "PasswordFormat": 12,
  "FailedPasswordAttemptCount": 13,
  "FailedPasswordAnswerAttemptCount": 14,
  "CreateDate": "2025-03-15T02:17:03.0750478+00:00",
  "LastLoginDate": "2025-03-15T02:17:03.0750478+00:00",
  "LastPasswordChangedDate": "2025-03-15T02:17:03.0750478+00:00",
  "LastLockoutDate": "2025-03-15T02:17:03.0750478+00:00",
  "FailedPasswordAttemptWindowStart": "2025-03-15T02:17:03.0750478+00:00",
  "FailedPasswordAnswerAttemptWindowStart": "2025-03-15T02:17:03.0750478+00:00"
}

application/xml, text/xml

Sample:
<AspNet_Membership xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BracketAPI.Models">
  <Comment>sample string 9</Comment>
  <CreateDate>2025-03-15T02:17:03.0750478+00:00</CreateDate>
  <Email>sample string 5</Email>
  <FailedPasswordAnswerAttemptCount>14</FailedPasswordAnswerAttemptCount>
  <FailedPasswordAnswerAttemptWindowStart>2025-03-15T02:17:03.0750478+00:00</FailedPasswordAnswerAttemptWindowStart>
  <FailedPasswordAttemptCount>13</FailedPasswordAttemptCount>
  <FailedPasswordAttemptWindowStart>2025-03-15T02:17:03.0750478+00:00</FailedPasswordAttemptWindowStart>
  <IsApproved>true</IsApproved>
  <IsLockedOut>true</IsLockedOut>
  <LastLockoutDate>2025-03-15T02:17:03.0750478+00:00</LastLockoutDate>
  <LastLoginDate>2025-03-15T02:17:03.0750478+00:00</LastLoginDate>
  <LastPasswordChangedDate>2025-03-15T02:17:03.0750478+00:00</LastPasswordChangedDate>
  <LoweredEmail>sample string 6</LoweredEmail>
  <MobilePIN>sample string 4</MobilePIN>
  <Password>sample string 2</Password>
  <PasswordAnswer>sample string 8</PasswordAnswer>
  <PasswordFormat>12</PasswordFormat>
  <PasswordQuestion>sample string 7</PasswordQuestion>
  <PasswordSalt>sample string 3</PasswordSalt>
  <UserId>sample string 1</UserId>
</AspNet_Membership>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.