POST api/account/ValidateDentistEmail

Request Information

URI Parameters

None.

Body Parameters

UserRegisterModel
NameDescriptionTypeAdditional information
client_id

string

None.

Email

string

None.

Password

string

None.

Connection

string

None.

Username

string

None.

Name

string

None.

Nickname

string

None.

Role

UserType

None.

Id

integer

None.

user_metadata

Dictionary of string [key] and Object [value]

None.

Request Formats

application/json, text/json

Sample:
{
  "client_id": "sample string 1",
  "Email": "sample string 2",
  "Password": "sample string 3",
  "Connection": "sample string 4",
  "Username": "sample string 5",
  "Name": "sample string 6",
  "Nickname": "sample string 7",
  "Role": 1,
  "Id": 8,
  "user_metadata": {
    "sample string 1": {},
    "sample string 3": {}
  }
}

application/xml, text/xml

Sample:
<UserRegisterModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Silver.Agenda.Core.Domain.Model">
  <ClientId>sample string 1</ClientId>
  <Connection>sample string 4</Connection>
  <Email>sample string 2</Email>
  <Id>8</Id>
  <Name>sample string 6</Name>
  <Nickname>sample string 7</Nickname>
  <Password>sample string 3</Password>
  <Role>Docter</Role>
  <UserMetadata xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:KeyValueOfstringanyType>
      <d2p1:Key>sample string 1</d2p1:Key>
      <d2p1:Value />
    </d2p1:KeyValueOfstringanyType>
    <d2p1:KeyValueOfstringanyType>
      <d2p1:Key>sample string 3</d2p1:Key>
      <d2p1:Value />
    </d2p1:KeyValueOfstringanyType>
  </UserMetadata>
  <Username>sample string 5</Username>
</UserRegisterModel>

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 'UserRegisterModel'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.