POST api/account/external-registration

Request Information

URI Parameters

None.

Body Parameters

AccountExternalRegistrationModel
NameDescriptionTypeAdditional information
member_id

string

None.

password_hashed

string

None.

name

string

None.

identity_no

string

None.

identity_type

string

None.

email

string

None.

country_code

string

None.

contact_no

string

None.

is_email_verified

boolean

None.

is_phone_verified

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "member_id": "sample string 1",
  "password_hashed": "sample string 2",
  "name": "sample string 3",
  "identity_no": "sample string 4",
  "identity_type": "sample string 5",
  "email": "sample string 6",
  "country_code": "sample string 7",
  "contact_no": "sample string 8",
  "is_email_verified": true,
  "is_phone_verified": true
}

application/xml, text/xml

Sample:
<AccountExternalRegistrationModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HyperQB.Property.API.Models">
  <contact_no>sample string 8</contact_no>
  <country_code>sample string 7</country_code>
  <email>sample string 6</email>
  <identity_no>sample string 4</identity_no>
  <identity_type>sample string 5</identity_type>
  <is_email_verified>true</is_email_verified>
  <is_phone_verified>true</is_phone_verified>
  <member_id>sample string 1</member_id>
  <name>sample string 3</name>
  <password_hashed>sample string 2</password_hashed>
</AccountExternalRegistrationModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

AccountPhoneOutputModel
NameDescriptionTypeAdditional information
Id

string

None.

DisplayName

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Id": "sample string 1",
  "DisplayName": "sample string 2"
}

application/xml, text/xml

Sample:
<AccountPhoneOutputModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HyperQB.Property.API.Models">
  <DisplayName>sample string 2</DisplayName>
  <Id>sample string 1</Id>
</AccountPhoneOutputModel>