POST
/
v1
/
createUser
curl --request POST \
  --url https://dashboard.brandblast.ai/api/v1/createUser \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '{
  "user_email": "newuser@example.com",
  "user_password": "securePassword123",
  "should_reset_password": "false"
}'
{
  "user_email": "newuser@example.com",
  "user_password": "securePassword123"
}

Authorizations

X-API-Key
string
header
required

Body

application/json
user_email
string
required

Email address of the new user

user_password
string
required

Password for the new user account

should_reset_password
enum<string>
default:false

Flag to indicate if the user should reset their password upon login. Defaults to false.

Available options:
true,
false

Response

200
application/json
User created successfully
user_email
string
user_password
string