Skip to main content
POST
/
auth
/
register
Register new user
curl --request POST \
  --url https://api.anycheck.id/auth/register \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "John Doe",
  "email": "[email protected]",
  "password": "<string>",
  "phone": "+6281234567890"
}
'
{
  "message": "Operation successful",
  "data": {}
}

Body

application/json
name
string
required
Example:

"John Doe"

email
string<email>
required
password
string<password>
required
Minimum string length: 8
phone
string
Example:

"+6281234567890"

Response

User registered successfully

message
string
Example:

"Operation successful"

data
object