Get welcome details for the authenticated user, including organization information for onboarding.
GET/v1/user/welcomedetails
| Field | Type | Description |
|---|---|---|
name | string | Organization name or user's name |
logo | string | null | Organization logo URL (null if not set) |
email | string | null | Contact email (organization owner's email) |
- Returns organization matching user's email domain (e.g., user
john@acme.comgets Acme Corporation) - If no match, returns first organization in user's list
- If no organizations, returns user's own details
Bash
- Bash
- Python
- JavaScript
curl -X GET \
"https://api.aitronos.com/v1/user/welcomedetails" \
-H "X-API-Key: $FREDDY_API_KEY"Response:
{
"name": "Aitronos",
"logo": "https://aitronos.com/logo.png",
"email": "admin@aitronos.com"
}