Skip to main content

RegisterUser

Register user information

Description

  • After UserConfirm, register the information (user name, password, etc.) of the user who uses Hexabase for the first time.
  • User-specific information can be registered in additional_info in Map format.

Method

POST

Request URL Format

/api/v0/users/registration/confirm

Payload

{
"confirmation_id":"確認用のID", //Required
"email":"登録されるemail", //Required
"username":"登録されるユーザー名",
"password": "設定するパスワード", // Required
"workspace":"作成するワークスペース名",
"additional_info":{
"field_name1": "value", // field_name, value Free values can be specified for both
"field_name2": "value"
},
"send_password_to_email": true, // Send a registration completion email when executing the API. Default false
"sender_address": "[email protected]" // Specify if you want to change the from of the registration completion email to any value
"conf_email_template_id": string, // Email template ID
"confirm_email_ack": bool // Flag to notifiy. true -> Valid、false -> Invalid
}

Request URL Sample

POST https://api.xxx.com/api/v0/users/registration/confirm

Response Sample