Skip to main content
POST
/
partner
/
register
Register new partner/brand
curl --request POST \
  --url http://localhost/mogl/mogl-backend/api/partner/register \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "partner@example.com",
  "password": "<string>",
  "is_premium": 0,
  "university": "<string>"
}
'

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:

"partner@example.com"

password
string<password>
required

Min 5, max 255 characters

is_premium
integer

Optional, defaults to 0

Example:

0

university
string

Optional university URL slug for collective association

Response

Partner registered successfully