Skip to main content
POST
/
programmatic
/
register
curl --request POST \
  --url https://apx.didit.me/auth/v2/programmatic/register/ \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "developer@gmail.com",
  "password": "MyStr0ng!Pass"
}
'
{
  "message": "Registration successful. Check your email for the verification code.",
  "email": "developer@gmail.com"
}

Body

application/json
email
string<email>
required

Any valid email address (Gmail, work email, etc.)

password
string
required

Minimum 8 characters. Must contain at least 1 uppercase letter (A-Z), 1 lowercase letter (a-z), 1 digit (0-9), and 1 special character (!@#$%^&*()_+-=[]{}|;:,.<>?).

Minimum string length: 8

Response

Registration successful. Check email for verification code.

message
string
email
string