Skip to main content
POST
/
auth
/
register
/
complete
Complete workspace registration
curl --request POST \
  --url https://business.tgo-eg.com/api/v1/auth/register/complete \
  --header 'Content-Type: application/json' \
  --data '
{
  "completion_token": "<string>",
  "organization_name": "Acme Support",
  "owner_name": "Mona Ashraf",
  "password": "<string>",
  "password_confirmation": "<string>",
  "subdomain": "acme-support",
  "phone": "+201010000000"
}
'
{
  "message": "<string>",
  "errors": {}
}

Body

application/json
completion_token
string
required
organization_name
string
required
Example:

"Acme Support"

owner_name
string
required
Example:

"Mona Ashraf"

password
string<password>
required
Minimum string length: 8
password_confirmation
string<password>
required
subdomain
string
Example:

"acme-support"

phone
string
Example:

"+201010000000"

Response

Workspace created.