Account Profile
Retrieve profile information for the authenticated account.
GET /account/profile
Returns basic account information including name, email, and settings.
Authentication
Requires an API key with Admin access level.
curl https://api.growpanel.io/v1/account/profile \
-H "Authorization: Bearer YOUR_API_KEY"Response
Status: 200 OK
{
"id": "acc_123",
"name": "Acme Corp",
"email": "[email protected]",
"base_currency": "usd",
"timezone": "America/New_York",
"created_at": "2024-01-15T00:00:00Z"
}Response fields
| Field | Type | Description |
|---|---|---|
id | string | Unique account identifier |
name | string | Account or company name |
email | string | Primary account email |
base_currency | string | Default reporting currency |
timezone | string | Account timezone |
created_at | string | When the account was created |