Skip to content

Latest commit

 

History

History
33 lines (29 loc) · 15.6 KB

signup.md

File metadata and controls

33 lines (29 loc) · 15.6 KB

SignUp

Success

Fields

Field Type Required Description Example
object models.SignUpObject ✔️ N/A sign_up_attempt
id str ✔️ N/A signup_1234567890abcdef
status models.SignUpStatus ✔️ N/A complete
required_fields List[str] ✔️ N/A [
"email_address"
]
optional_fields List[str] ✔️ N/A [
"first_name",
"last_name"
]
missing_fields List[str] ✔️ N/A [
"phone_number"
]
unverified_fields List[str] ✔️ N/A [
"email_address"
]
verifications models.SignUpVerifications ✔️ N/A
username Nullable[str] ✔️ N/A user_123456
email_address Nullable[str] ✔️ N/A [email protected]
phone_number Nullable[str] ✔️ N/A +1234567890
web3_wallet Nullable[str] ✔️ N/A 0x1234567890abcdef1234567890abcdef12345678
password_enabled bool ✔️ N/A true
first_name Nullable[str] ✔️ N/A John
last_name Nullable[str] ✔️ N/A Doe
custom_action bool ✔️ N/A false
external_id Nullable[str] ✔️ N/A ext_id_7890abcdef123456
created_session_id Nullable[str] ✔️ N/A sess_1234567890abcdef
created_user_id Nullable[str] ✔️ N/A user_1234567890abcdef
abandon_at int ✔️ Unix timestamp at which the user abandoned the sign up attempt.
1609459200
legal_accepted_at Nullable[int] ✔️ Unix timestamp at which the user accepted the legal requirements.
1700690400000
unsafe_metadata Dict[str, Any] N/A
public_metadata Dict[str, Any] N/A
external_account Optional[models.SignUpExternalAccount] : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible.