GET api/AppUser/IsEmailExistsForAuthentication?email={email}&userId={userId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
email

string

Required

userId

string

Required

Body Parameters

None.

Response Information

Resource Description

EmailWithAuthenticationResponseModel
NameDescriptionTypeAdditional information
IsEmailExist

boolean

None.

Result

ResponseResult

None.

Response Formats

application/json, text/json

Sample:
{
  "IsEmailExist": true,
  "Result": {
    "Success": true,
    "Message": "sample string 2",
    "Errors": [
      {
        "Message": "sample string 1"
      },
      {
        "Message": "sample string 1"
      }
    ]
  }
}

application/xml, text/xml

Sample:
<EmailWithAuthenticationResponseModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Bond.Core.API.Models.Response">
  <Result>
    <Errors>
      <ErrorMessage>
        <Message>sample string 1</Message>
      </ErrorMessage>
      <ErrorMessage>
        <Message>sample string 1</Message>
      </ErrorMessage>
    </Errors>
    <Message>sample string 2</Message>
    <Success>true</Success>
  </Result>
  <IsEmailExist>true</IsEmailExist>
</EmailWithAuthenticationResponseModel>