PUT UserAuthentication/{join_code}/join?invite_code={invite_code}&adminappid={adminappid}&adminhash={adminhash}&appid={appid}&name={name}&password={password}&sms_phonenumber={sms_phonenumber}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
invite_code

string

Required

adminappid

string

Required

adminhash

string

Required

appid

string

Required

name

string

Required

password

string

Required

sms_phonenumber

string

Required

join_code

string

None.

Body Parameters

None.

Response Information

Resource Description

SecurityInfo
NameDescriptionTypeAdditional information
appid

string

None.

sg

string

None.

hash

string

None.

token

string

None.

enduser_id

string

None.

name

string

None.

username

string

None.

user_type

string

None.

require_2fa

boolean

None.

sid

string

None.

guid

string

None.

email

string

None.

usertype

string

None.

require_2fa_type

string

None.

is_2fa_initialized

boolean

None.

require_password_change

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "appid": "sample string 1",
  "sg": "sample string 2",
  "hash": "sample string 3",
  "token": "sample string 4",
  "enduser_id": "sample string 5",
  "name": "sample string 6",
  "username": "sample string 7",
  "user_type": "sample string 8",
  "require_2fa": true,
  "sid": "sample string 10",
  "guid": "sample string 11",
  "email": "sample string 12",
  "usertype": "sample string 13",
  "require_2fa_type": "sample string 14",
  "is_2fa_initialized": true,
  "require_password_change": true
}

application/xml, text/xml

Sample:
<SecurityInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/productious_models">
  <appid>sample string 1</appid>
  <email>sample string 12</email>
  <enduser_id>sample string 5</enduser_id>
  <guid>sample string 11</guid>
  <hash>sample string 3</hash>
  <is_2fa_initialized>true</is_2fa_initialized>
  <name>sample string 6</name>
  <require_2fa>true</require_2fa>
  <require_2fa_type>sample string 14</require_2fa_type>
  <require_password_change>true</require_password_change>
  <sg>sample string 2</sg>
  <sid>sample string 10</sid>
  <token>sample string 4</token>
  <user_type>sample string 8</user_type>
  <username>sample string 7</username>
  <usertype>sample string 13</usertype>
</SecurityInfo>