POST Authentication/RegisterPhoneVerify

Request Information

URI Parameters

None.

Body Parameters

OtpVerify
NameDescriptionTypeAdditional information
UserID

integer

None.

Otp

string

None.

IsPhoneVerify

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "UserID": 1,
  "Otp": "sample string 2",
  "IsPhoneVerify": true
}

application/xml, text/xml

Sample:
<AuthenticationViewModel.OtpVerify xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HizirYetisAPI.ViewModels">
  <IsPhoneVerify>true</IsPhoneVerify>
  <Otp>sample string 2</Otp>
  <UserID>1</UserID>
</AuthenticationViewModel.OtpVerify>

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

Response Information

Resource Description

LoginResponse
NameDescriptionTypeAdditional information
UserID

integer

None.

Success

boolean

None.

Message

string

None.

LoggedUserData

LoggedUserDataResponse

None.

Response Formats

application/json, text/json

Sample:
{
  "UserID": 1,
  "Success": true,
  "Message": "sample string 3",
  "LoggedUserData": {
    "UserID": 1,
    "Name": "sample string 2",
    "PhonePrefix": "sample string 3",
    "Phone": "sample string 4",
    "Email": "sample string 5",
    "LoginType": 6,
    "LoginTypeValue": "sample string 7",
    "IsCorporate": true,
    "ActiveAddressID": 9
  }
}

application/xml, text/xml

Sample:
<AuthenticationViewModel.LoginResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HizirYetisAPI.ViewModels">
  <LoggedUserData>
    <ActiveAddressID>9</ActiveAddressID>
    <Email>sample string 5</Email>
    <IsCorporate>true</IsCorporate>
    <LoginType>6</LoginType>
    <LoginTypeValue>sample string 7</LoginTypeValue>
    <Name>sample string 2</Name>
    <Phone>sample string 4</Phone>
    <PhonePrefix>sample string 3</PhonePrefix>
    <UserID>1</UserID>
  </LoggedUserData>
  <Message>sample string 3</Message>
  <Success>true</Success>
  <UserID>1</UserID>
</AuthenticationViewModel.LoginResponse>