Skip to main content
POST
/
register
/
user
Register a new user
curl --request POST \
  --url http://localhost/mogl/mogl-backend/api/register/user \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "user@example.com",
  "is_private": "N",
  "is_premium": 0
}
'

Documentation Index

Fetch the complete documentation index at: https://developer.mogl.online/llms.txt

Use this file to discover all available pages before exploring further.

Body

application/json
email
string<email>
required
Example:

"user@example.com"

is_private
string

Optional, defaults to N

Example:

"N"

is_premium
integer

Optional, defaults to 0

Example:

0

Response

Registration successful