Skip to main content

Endpoint

No authentication required

This endpoint is public. No API key needed.

Request Body

FieldTypeRequiredDescription
namestringYesFull name
emailstringYesWork email address
passwordstringYesMinimum 8 characters
countrystringYesISO 3166-1 alpha-2 country code (e.g. PT, AE, NG)
verticalsarrayNoAreas of interest: healthcare, banking, telecom, logistics, emergency, gov, other

Example

curl -X POST https://api.wede.pt/v1/onboarding/register \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Jane Smith",
    "email": "jane@hospital.org",
    "password": "SecurePass123",
    "country": "NG",
    "verticals": ["healthcare", "emergency"]
  }'

Response

{
  "status": "pending_verification",
  "message": "Account created. Check your email to activate your account."
}
After activation, the account starts in demo mode with access to MedCore International sample data. Full access is granted once the account is associated with an organisation by a wede administrator.