POST
/
tail
/
users
/
create
curl --request POST \
  --url https://api.flyingraccoon.tech/tail/users/create \
  --header 'Content-Type: application/json' \
  --header 'raccoon-secret-key: <api-key>' \
  --data '{
  "name": "john",
  "email": "john.doe@example.com"
}'
{
  "success": true,
  "name": "john",
  "email": "jonh@appleseed.com",
  "raccoonPasscode": "raccoon123"
}

Authorizations

raccoon-secret-key
string
header
required

Body

application/json
name
string
required

specify name of user.

Example:

"john"

email
string
required

specify email of user.

Example:

"john.doe@example.com"

Response

200
application/json
Successful Response
success
boolean
required

If user was created successfully.

Example:

true

name
string
required

Name of the created user.

Example:

"john"

email
string
required

Email of the created user.

Example:

"jonh@appleseed.com"

raccoonPasscode
string
required

Raccoon passcode associated with the user.

Example:

"raccoon123"