v1

latestOpenAPI 3.0.02026-07-17493090.2 KB
Biome

Create new user with username and password credentials

post/biome/register

Headers

SplinterProtocolVersioninteger
Example:2

The protocol version which the client can understand. If not provided, the node will respond using its latest protocol version.

Request body

{"stackTrail":"paths:/biome/register:post:requestBody:content:application/json:schema:properties:username","oasType":"schema","type":"unknown","description":"username of a new user"}
{"stackTrail":"paths:/biome/register:post:requestBody:content:application/json:schema:properties:hashed_password","oasType":"schema","type":"unknown","description":"Hashed password to be used for user authentication\n"}

Example request

{
  "username": "alice@acme.com",
  "hashed_password": "F4AABE0B40C9ABB8B6FD2EEACB39C965"
}

Response

User created successfully

messagestring

Example response

{
  "message": "User created successfully"
}