Skip to main content

Endpoint

No authentication required

Request Body

FieldTypeRequiredDescription
tokenstringYes64-character token received by email

Example

curl -X POST https://api.wede.pt/v1/onboarding/verify \
  -H "Content-Type: application/json" \
  -d '{ "token": "your-64-char-token-here" }'

Response

{
  "status": "active",
  "message": "Account activated. You can now sign in."
}

Error codes

StatusCodeDescription
404invalid_tokenToken not found
409token_usedAccount already activated
410token_expiredToken expired (24h limit)