Skip to main content
POST
/
api
/
auth
/
register
Create account
curl --request POST \
  --url https://tryyomira.com/api/auth/register \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "jsmith@example.com",
  "password": "<string>",
  "name": "<string>",
  "companyName": "<string>",
  "companyUrl": "<string>",
  "role": "<string>",
  "intendedUse": "<string>"
}
'
{
  "error": "<string>"
}

Body

application/json
email
string<email>
required
password
string
required
Minimum string length: 8
name
string
required
companyName
string
required
companyUrl
string
required
role
string
required
intendedUse
string
required

Response

Account created